Skip to content

Commit

Permalink
Merge pull request #18 from PerfectThymeTech/marvinbuss/read
Browse files Browse the repository at this point in the history
Update Readme
  • Loading branch information
marvinbuss authored May 16, 2024
2 parents 8e33062 + 6710f78 commit 70bcebd
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,16 @@

### Prerequisites

Install the following tools on your device:

- Azure CLI
- Azure Subscription
- Terraform

### Azure CLI configuration

Configure Azure CLI on your device by runnin the follwing commands:

```sh
# Login to Azure
az login
Expand All @@ -21,8 +25,22 @@ az account set --subscription "<your-subscription-id>"
az config set extension.use_dynamic_install=yes_without_prompt
```

### Update Variables

Open the [`code\infra\vars.tfvars`](code\infra\vars.tfvars) file and update the prefix and location parameters:

```hcl
location = "<your-location>"
environment = "dev"
prefix = "<your-prefix-value>"
tags = {}
...
```

### Terraform deployment (local backend)

Deploy the Terraform configuration using the following commands:

```sh
# Move terraform_override.tf file
move .\utilities\terraformConfigSamples\* .\code\infra\
Expand All @@ -39,3 +57,5 @@ terraform plan -var-file="vars.tfvars"
# Terraform apply
terraform apply -var-file="vars.tfvars"
```

You successfully deployed the setup!

0 comments on commit 70bcebd

Please sign in to comment.