File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change 44
55### Prerequisites
66
7+ Install the following tools on your device:
8+
79- Azure CLI
810- Azure Subscription
911- Terraform
1012
1113### Azure CLI configuration
1214
15+ Configure Azure CLI on your device by runnin the follwing commands:
16+
1317``` sh
1418# Login to Azure
1519az login
@@ -21,8 +25,22 @@ az account set --subscription "<your-subscription-id>"
2125az config set extension.use_dynamic_install=yes_without_prompt
2226```
2327
28+ ### Update Variables
29+
30+ Open the [ ` code\infra\vars.tfvars ` ] ( code\infra\vars.tfvars ) file and update the prefix and location parameters:
31+
32+ ``` hcl
33+ location = "<your-location>"
34+ environment = "dev"
35+ prefix = "<your-prefix-value>"
36+ tags = {}
37+ ...
38+ ```
39+
2440### Terraform deployment (local backend)
2541
42+ Deploy the Terraform configuration using the following commands:
43+
2644``` sh
2745# Move terraform_override.tf file
2846move .\u tilities\t erraformConfigSamples\* .\c ode\i nfra\
@@ -39,3 +57,5 @@ terraform plan -var-file="vars.tfvars"
3957# Terraform apply
4058terraform apply -var-file=" vars.tfvars"
4159```
60+
61+ You successfully deployed the setup!
You can’t perform that action at this time.
0 commit comments