update files from comments

This commit is contained in:
cshea15 2023-10-02 20:37:33 -04:00
parent ec8fa91e05
commit 00d4ef3f0c
2 changed files with 7 additions and 5 deletions

View File

@ -25,8 +25,8 @@ This template deploys an [Azure Firewall](https://registry.terraform.io/provider
| Name | Description | Default value | | Name | Description | Default value |
|-|-|-| |-|-|-|
| `resource_group_location` | location for your resources | eastus | | `resource_group_location` | The location of the resource group | eastus |
| `firewall_sku_tier` | Sku size for your Firewall and Firewall Policy | Standard | | `firewall_sku_tier` | The sku size for your Firewall and Firewall Policy | Possible values: Standard, Premium |
| `resource_group_name_prefix` | Prefix for your resource group | rg | | `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` | Sku size for your jump and workload vms | Standard_D2_v3 | | `virtual_machine_size` | The sku size for your jump and workload VMs | Standard_D2_v3 |
| `admin_username` | admin username for the jump and workload vms | azureuser | | `admin_username` | THe admin username for the jump and workload VMs | azureuser |

View File

@ -27,5 +27,7 @@ variable "virtual_machine_size" {
} }
variable "admin_username" { variable "admin_username" {
type = string
description = "value of the admin username."
default = "azureuser" default = "azureuser"
} }