diff --git a/quickstart/201-azfw-multi-addresses/readme.md b/quickstart/201-azfw-multi-addresses/readme.md index 8575980c..c9364f50 100644 --- a/quickstart/201-azfw-multi-addresses/readme.md +++ b/quickstart/201-azfw-multi-addresses/readme.md @@ -1,6 +1,6 @@ # Deploy Azure Firewall with multiple public IP addresses -This template deploys an [Azure Firewall](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/firewall) with multiple [Public IP Address](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/public_ip) from a public IP address prefix. The deployed firewall has NAT rule collection rules that allow RDP connections to two Windows Server 2019 virtual machines.\ +This template deploys an [Azure Firewall](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/firewall) with multiple [Public IP Address](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/public_ip) from a public IP address prefix. The deployed firewall has NAT rule collection rules that allow RDP connections to two Windows Server 2019 virtual machines. ## Terraform resource types @@ -27,6 +27,6 @@ This template deploys an [Azure Firewall](https://registry.terraform.io/provider |-|-|-| | `resource_group_location` | Location of the resource group | eastus | | `firewall_sku_tier` | SKU size for your Firewall and Firewall Policy. Possible values: Standard, Premium | 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 | +| `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 | | `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 f3308100..c3af42e4 100644 --- a/quickstart/201-azfw-multi-addresses/variables.tf +++ b/quickstart/201-azfw-multi-addresses/variables.tf @@ -16,7 +16,7 @@ variable "firewall_sku_tier" { default = "Premium" # Valid values are Standard and Premium validation { condition = contains(["Standard", "Premium"], var.firewall_sku_tier) - error_message = "The sku must be one of the following: Standard, Premium" + error_message = "The SKU must be one of the following: Standard, Premium" } } @@ -28,6 +28,6 @@ variable "virtual_machine_size" { variable "admin_username" { type = string - description = "value of the admin username." + description = "Value of the admin username." default = "azureuser" }