github.com/spirius/terraform@v0.10.0-beta2.0.20170714185654-87b2c0cf8fea/examples/azure-vmss-ubuntu/variables.tf (about)

     1  # variable "subscription_id" {}
     2  # variable "client_id" {}
     3  # variable "client_secret" {}
     4  # variable "tenant_id" {}
     5  
     6  variable "resource_group" {
     7    description = "The name of the resource group in which to create the virtual network."
     8  }
     9  
    10  variable "location" {
    11    description = "The location/region where the virtual network is created. Changing this forces a new resource to be created."
    12    default     = "southcentralus"
    13  }
    14  
    15  variable "storage_account_type" {
    16    description = "Specifies the type of the storage account"
    17    default     = "Standard_LRS"
    18  }
    19  
    20  variable "hostname" {
    21    description = "A string that determines the hostname/IP address of the origin server. This string could be a domain name, IPv4 address or IPv6 address."
    22  }
    23  
    24  variable "vm_sku" {
    25    description = "Size of VMs in the VM Scale Set."
    26    default     = "Standard_A1"
    27  }
    28  
    29  variable "ubuntu_os_version" {
    30    description = "The Ubuntu version for the VM. This will pick a fully patched image of this given Ubuntu version. Allowed values are: 15.10, 14.04.4-LTS."
    31    default     = "16.04.0-LTS"
    32  }
    33  
    34  variable "image_publisher" {
    35    description = "The name of the publisher of the image (az vm image list)"
    36    default     = "Canonical"
    37  }
    38  
    39  variable "image_offer" {
    40    description = "The name of the offer (az vm image list)"
    41    default     = "UbuntuServer"
    42  }
    43  
    44  variable "vmss_name" {
    45    description = "String used as a base for naming resources. Must be 3-61 characters in length and globally unique across Azure. A hash is prepended to this string for some resources, and resource-specific information is appended."
    46  }
    47  
    48  variable "instance_count" {
    49    description = "Number of VM instances (100 or less)."
    50    default     = "5"
    51  }
    52  
    53  variable "admin_username" {
    54    description = "Admin username on all VMs."
    55  }
    56  
    57  variable "admin_password" {
    58    description = "Admin password on all VMs."
    59  }