From 714076043e8688233065a867401e46200f15d519 Mon Sep 17 00:00:00 2001 From: Scott Nowicki Date: Thu, 27 Apr 2017 17:32:49 -0500 Subject: [PATCH] updated incorrect descriptions --- examples/azure-vm-simple-linux-managed-disk/variables.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/azure-vm-simple-linux-managed-disk/variables.tf b/examples/azure-vm-simple-linux-managed-disk/variables.tf index 6d65a02770..17fbe337da 100644 --- a/examples/azure-vm-simple-linux-managed-disk/variables.tf +++ b/examples/azure-vm-simple-linux-managed-disk/variables.tf @@ -36,12 +36,12 @@ variable "subnet_prefix" { } variable "storage_account_type" { - description = "Specifies the name of the storage account. Changing this forces a new resource to be created. This must be unique across the entire Azure service, not just within the resource group." + description = "Defines the type of storage account to be created. Valid options are Standard_LRS, Standard_ZRS, Standard_GRS, Standard_RAGRS, Premium_LRS. Changing this is sometimes valid - see the Azure documentation for more information on which types of accounts can be converted into other types." default = "Standard_LRS" } variable "vm_size" { - description = "Specifies the name of the virtual machine resource. Changing this forces a new resource to be created." + description = "Specifies the size of the virtual machine." default = "Standard_A0" }