Skip to content

luiarhs/az-terra

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Azure IaC with Terraform

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

About

Azure IaC

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published