Skip to content

luiarhs/az-terra

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Az Terra

Install Dependencies

Terraform and Helm that we will be using to deploy.

Create the resources in Azure use the following commands:

# Login To Azure
az login

# Create Resource Group
az group create --location southcentralus --name name-rg

# Create Storage Account
az storage account create --name ballastlaneprod --location southcentralus --sku Standard_LRS

# Create Storage Container
az storage container create -n tfstate --account-name ballastlaneprod

# Initialize Terraform
terraform init

# Terraform Plan
terraform plan

# Terraform Apply
terraform apply

Project Structure

terraform/ │ ├── modules/ │ ├── aks/ │ └── database/ ├── environments/ │ ├── dev/ │ └── prod/ └── main.tf │ ├── README.md │ └── .gitignore

Releases

No releases published

Packages

No packages published

Languages