From e24feee41af5980c26ecfa97c2d05c2679516446 Mon Sep 17 00:00:00 2001 From: cshea15 Date: Thu, 5 Oct 2023 16:54:59 -0400 Subject: [PATCH] formatting --- quickstart/201-azfw-with-ipgroups/main.tf | 12 ++++++------ quickstart/201-azfw-with-ipgroups/variables.tf | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/quickstart/201-azfw-with-ipgroups/main.tf b/quickstart/201-azfw-with-ipgroups/main.tf index dde9749a..5da8605d 100644 --- a/quickstart/201-azfw-with-ipgroups/main.tf +++ b/quickstart/201-azfw-with-ipgroups/main.tf @@ -203,16 +203,16 @@ resource "azurerm_network_interface_security_group_association" "vm_jump_nsg_ass } resource "azurerm_linux_virtual_machine" "vm_server" { - name = "server-vm" - resource_group_name = azurerm_resource_group.rg.name - location = azurerm_resource_group.rg.location - size = var.virtual_machine_size - admin_username = var.admin_username + name = "server-vm" + resource_group_name = azurerm_resource_group.rg.name + location = azurerm_resource_group.rg.location + size = var.virtual_machine_size + admin_username = var.admin_username admin_ssh_key { username = var.admin_username public_key = jsondecode(azapi_resource_action.ssh_public_key_gen.output).publicKey } - network_interface_ids = [azurerm_network_interface.vm_server_nic.id] + network_interface_ids = [azurerm_network_interface.vm_server_nic.id] os_disk { caching = "ReadWrite" storage_account_type = "Standard_LRS" diff --git a/quickstart/201-azfw-with-ipgroups/variables.tf b/quickstart/201-azfw-with-ipgroups/variables.tf index 11c23c95..549583d2 100644 --- a/quickstart/201-azfw-with-ipgroups/variables.tf +++ b/quickstart/201-azfw-with-ipgroups/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" } \ No newline at end of file