github.com/nathanielks/terraform@v0.6.1-0.20170509030759-13e1a62319dc/examples/azure-cdn-with-storage-account/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 "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 "storage_account_type" {
    11    description = "Specifies the type of the storage account"
    12    default     = "Standard_LRS"
    13  }
    14  
    15  variable "host_name" {
    16    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."
    17    default     = "www.hostnameoforiginserver.com"
    18  }