github.com/loicalbertin/terraform@v0.6.15-0.20170626182346-8e2583055467/examples/azure-2-vms-loadbalancer-lbrules/variables.tf (about)

     1  variable "resource_group" {
     2    description = "The name of the resource group in which to create the virtual network."
     3  }
     4  
     5  variable "rg_prefix" {
     6    description = "The shortened abbreviation to represent your resource group that will go on the front of some resources."
     7    default     = "rg"
     8  }
     9  
    10  variable "hostname" {
    11    description = "VM name referenced also in storage-related names."
    12  }
    13  
    14  variable "dns_name" {
    15    description = " Label for the Domain Name. Will be used to make up the FQDN. If a domain name label is specified, an A DNS record is created for the public IP in the Microsoft Azure DNS system."
    16  }
    17  
    18  variable "lb_ip_dns_name" {
    19    description = "DNS for Load Balancer IP"
    20  }
    21  
    22  variable "location" {
    23    description = "The location/region where the virtual network is created. Changing this forces a new resource to be created."
    24    default     = "southcentralus"
    25  }
    26  
    27  variable "virtual_network_name" {
    28    description = "The name for the virtual network."
    29    default     = "vnet"
    30  }
    31  
    32  variable "address_space" {
    33    description = "The address space that is used by the virtual network. You can supply more than one address space. Changing this forces a new resource to be created."
    34    default     = "10.0.0.0/16"
    35  }
    36  
    37  variable "subnet_prefix" {
    38    description = "The address prefix to use for the subnet."
    39    default     = "10.0.10.0/24"
    40  }
    41  
    42  variable "storage_account_type" {
    43    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."
    44    default     = "Standard_LRS"
    45  }
    46  
    47  variable "vm_size" {
    48    description = "Specifies the size of the virtual machine."
    49    default     = "Standard_D1"
    50  }
    51  
    52  variable "image_publisher" {
    53    description = "name of the publisher of the image (az vm image list)"
    54    default     = "MicrosoftWindowsServer"
    55  }
    56  
    57  variable "image_offer" {
    58    description = "the name of the offer (az vm image list)"
    59    default     = "WindowsServer"
    60  }
    61  
    62  variable "image_sku" {
    63    description = "image sku to apply (az vm image list)"
    64    default     = "2012-R2-Datacenter"
    65  }
    66  
    67  variable "image_version" {
    68    description = "version of the image to apply (az vm image list)"
    69    default     = "latest"
    70  }
    71  
    72  variable "admin_username" {
    73    description = "administrator user name"
    74    default     = "vmadmin"
    75  }
    76  
    77  variable "admin_password" {
    78    description = "administrator password (recommended to disable password auth)"
    79  }