Skip to content

Commit aa18505

Browse files
committed
Add basic terraform instructions to readme.md
1 parent afe5ab5 commit aa18505

1 file changed

Lines changed: 22 additions & 1 deletion

File tree

README.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,22 @@
1-
# PocketDDD
1+
# PocketDDD
2+
3+
# Running terraform locally
4+
Ensure both terraform and the Azure CLI are installed
5+
```
6+
brew install terraform
7+
brew install azure-cli
8+
```
9+
10+
Login to Azure
11+
```
12+
az login
13+
```
14+
15+
From the `terraform` directory run init, plan, then apply if happy with the changes.
16+
```
17+
cd ./terraform
18+
19+
terraform init
20+
terraform plan -var-file ../tfvars/dev.tfvars
21+
terraform apply -var-file ../tfvars/dev.tfvars
22+
```

0 commit comments

Comments
 (0)