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

     1  variable "resource_group" {
     2    description = "The name of the resource group in which to create the virtual network, virtual machines, and traffic manager."
     3  }
     4  
     5  variable "location" {
     6    description = "The location/region where the virtual network is created. Changing this forces a new resource to be created."
     7    default     = "southcentralus"
     8  }
     9  
    10  variable "dns_name" {
    11    description = "Relative DNS name for the traffic manager profile, resulting FQDN will be <uniqueDnsName>.trafficmanager.net, must be globally unique."
    12  }
    13  
    14  variable "vnet" {
    15    description = "The name of virtual network"
    16    default     = "vnet"
    17  }
    18  
    19  variable "num_vms" {
    20    description = "The number of virtual machines you will provision. This variable is also used for NICs and PIPs in this Terraform script."
    21    default     = "3"
    22  }
    23  
    24  variable "address_space" {
    25    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."
    26    default     = "10.0.0.0/16"
    27  }
    28  
    29  variable "subnet_name" {
    30    description = "The name of the subnet"
    31    default     = "subnet"
    32  }
    33  
    34  variable "subnet_prefix" {
    35    description = "The address prefix to use for the subnet"
    36    default     = "10.0.0.0/24"
    37  }
    38  
    39  variable "vm_size" {
    40    description = "The size of the virtual machine"
    41    default     = "Standard_D1"
    42  }
    43  
    44  variable "image_publisher" {
    45    description = "The name of the publisher of the image (az vm image list)"
    46    default     = "Canonical"
    47  }
    48  
    49  variable "image_offer" {
    50    description = "The name of the offer (az vm image list)"
    51    default     = "UbuntuServer"
    52  }
    53  
    54  variable "image_sku" {
    55    description = "The Ubuntu version for the VM. This will pick a fully patched image of this given Ubuntu version. Allowed values: 12.04.5-LTS, 14.04.2-LTS, 15.10."
    56    default     = "14.04.2-LTS"
    57  }
    58  
    59  variable "image_version" {
    60    description = "the version of the image to apply (az vm image list)"
    61    default     = "latest"
    62  }
    63  
    64  variable "admin_username" {
    65    description = "Username for virtual machines"
    66    default     = "vmadmin"
    67  }
    68  
    69  variable "admin_password" {
    70    description = "Password for virtual machines"
    71  }