update readme

This commit is contained in:
Dennis Eikelenboom 2021-09-29 13:52:43 -07:00
parent b63853c77b
commit 7f015dd153
2 changed files with 11 additions and 3 deletions

View File

@ -46,7 +46,11 @@ This configuration describes the minimal set of resources you require to get sta
```bash ```bash
terraform init terraform init
terraform plan -var name=azureml567 -out demo.tfplan terraform plan \
-var name=azureml567 \
-var environment=dev \
-var <for a full list of variables and default values, see 'Variables'> \
-out demo.tfplan
terraform apply "demo.tfplan" terraform apply "demo.tfplan"
``` ```

View File

@ -33,7 +33,7 @@ Please note that this template does not create Azure Private DNS zones. The assu
| Name | Description | Default | | Name | Description | Default |
|-|-|-| |-|-|-|
| name | Name of the deployment | - | | name | Name of the deployment | - |
| environment | The deployment environment name (used for pre- and postfixing resource names) | dev | | environment | The deployment environment name (used for pre- and postfixing resource names) | dev |
| location | The Azure region used for deployments | East US | | location | The Azure region used for deployments | East US |
| vnet_resource_group_name | Name of the existing VNet Resource Group | - | | vnet_resource_group_name | Name of the existing VNet Resource Group | - |
| vnet_name | Name of the existing VNet | - | | vnet_name | Name of the existing VNet | - |
@ -58,7 +58,11 @@ Please note that this template does not create Azure Private DNS zones. The assu
```bash ```bash
terraform init terraform init
terraform plan -var name=azureml567 -out demo.tfplan terraform plan \
-var name=azureml567 \
-var environment=dev \
-var <for a full list of variables and default values, see 'Variables'> \
-out demo.tfplan
terraform apply "demo.tfplan" terraform apply "demo.tfplan"
``` ```