github.com/paybyphone/terraform@v0.9.5-0.20170613192930-9706042ddd51/examples/azure-traffic-manager-lb-scale-set/variables.tf (about)

     1  # Traffic manager settings
     2  
     3  variable "global_location" {
     4    default        = "UK West"
     5    description    = "Where any global resources will be placed"
     6  }
     7  
     8  variable "dns_relative_name" {
     9    default        = "azuretfexample"
    10    description    = "Relative DNS name for traffic manager"
    11  }
    12  
    13  # Location 01 Settings
    14  
    15  variable "location01_location" {
    16    default        = "UK West"
    17    description    = "First location to build"
    18  }
    19  
    20  variable "location01_resource_prefix" {
    21    default        = "ukwestweb"
    22    description    = "Prefix for naming resource group"
    23  }
    24  
    25  variable "location01_webserver_prefix" {
    26    default        = "ukwwebsvr"
    27    description    = "Prefix for naming web servers"
    28  }
    29  
    30  variable "location01_lb_dns_label" {
    31    default        = "ukwestwebexample"
    32    description    = "DNS name label for the locations load balancer"
    33  }
    34  
    35  # Location 02 Settings
    36  
    37  variable "location02_location" {
    38    default        = "West US"
    39    description    = "Second location to build"
    40  }
    41  
    42  variable "location02_resource_prefix" {
    43    default        = "uswestweb"
    44    description    = "Prefix for naming resource group"
    45  }
    46  
    47  variable "location02_webserver_prefix" {
    48    default        = "uswwebsvr"
    49    description    = "Prefix for naming web servers"
    50  }
    51  
    52  variable "location02_lb_dns_label" {
    53    default        = "uswestwebexample"
    54    description    = "DNS name label for the locations load balancer"
    55  }
    56  
    57  # Scale set and VM settings
    58  
    59  variable "instance_count" {
    60    default        = "2"
    61    description    = "Number of server instances to create in scale set"
    62  }
    63  
    64  variable "instance_vmprofile" {
    65    default        = "Standard_A1"
    66    description    = "VM profile of servers in scale set"
    67  }
    68  
    69  # OS Profile
    70  
    71  variable "image_admin_username" {
    72    default        = "webadmin"
    73    description    = "Local admin user name"
    74  }
    75  
    76  variable "image_admin_password" {
    77    default        = "2nmn39x#3775hh3x9"
    78    description    = "Password"
    79  }
    80  
    81  # Market place image to use
    82  
    83  variable "image_publisher" {
    84    default        = "Canonical"
    85    description    = "Publisher of market place image"
    86  }
    87  variable "image_offer" {
    88    default        = "UbuntuServer"
    89    description    = "Market place image name"
    90  }
    91  variable "image_sku" {
    92    default        = "16.10"
    93    description    = "Market place image SKU"
    94  }
    95  variable "image_version" {
    96    default        = "latest"
    97    description    = "Market place image version"
    98  }