From 00d4ef3f0ce2d3e85d2670b6d50ab5bb4e2626ca Mon Sep 17 00:00:00 2001 From: cshea15 Date: Mon, 2 Oct 2023 20:37:33 -0400 Subject: [PATCH] update files from comments --- quickstart/201-azfw-multi-addresses/readme.md | 10 +++++----- quickstart/201-azfw-multi-addresses/variables.tf | 2 ++ 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/quickstart/201-azfw-multi-addresses/readme.md b/quickstart/201-azfw-multi-addresses/readme.md index 76afbb7f..c909c77a 100644 --- a/quickstart/201-azfw-multi-addresses/readme.md +++ b/quickstart/201-azfw-multi-addresses/readme.md @@ -25,8 +25,8 @@ This template deploys an [Azure Firewall](https://registry.terraform.io/provider | Name | Description | Default value | |-|-|-| -| `resource_group_location` | location for your resources | eastus | -| `firewall_sku_tier` | Sku size for your Firewall and Firewall Policy | Standard | -| `resource_group_name_prefix` | Prefix for your resource group | rg | -| `virtual_machine_size` | Sku size for your jump and workload vms | Standard_D2_v3 | -| `admin_username` | admin username for the jump and workload vms | azureuser | \ No newline at end of file +| `resource_group_location` | The location of the resource group | eastus | +| `firewall_sku_tier` | The sku size for your Firewall and Firewall Policy | Possible values: Standard, Premium | +| `resource_group_name_prefix` | Prefix of the resource group name that's combined with a random ID so that name is unique in your Azure subscription | rg | +| `virtual_machine_size` | The sku size for your jump and workload VMs | Standard_D2_v3 | +| `admin_username` | THe admin username for the jump and workload VMs | azureuser | \ No newline at end of file diff --git a/quickstart/201-azfw-multi-addresses/variables.tf b/quickstart/201-azfw-multi-addresses/variables.tf index 5abb6c49..d48ebf42 100644 --- a/quickstart/201-azfw-multi-addresses/variables.tf +++ b/quickstart/201-azfw-multi-addresses/variables.tf @@ -27,5 +27,7 @@ variable "virtual_machine_size" { } variable "admin_username" { + type = string + description = "value of the admin username." default = "azureuser" }