Skip to content

Commit 70bcebd

Browse files
authored
Merge pull request #18 from PerfectThymeTech/marvinbuss/read
Update Readme
2 parents 8e33062 + 6710f78 commit 70bcebd

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

README.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,16 @@
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
1519
az login
@@ -21,8 +25,22 @@ az account set --subscription "<your-subscription-id>"
2125
az 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
2846
move .\utilities\terraformConfigSamples\* .\code\infra\
@@ -39,3 +57,5 @@ terraform plan -var-file="vars.tfvars"
3957
# Terraform apply
4058
terraform apply -var-file="vars.tfvars"
4159
```
60+
61+
You successfully deployed the setup!

0 commit comments

Comments
 (0)