github.com/swisspost/terratest@v0.0.0-20230214120104-7ec6de2e1ae0/examples/azure/terraform-azure-frontdoor-example/variables.tf (about)

     1  # ---------------------------------------------------------------------------------------------------------------------
     2  # ENVIRONMENT VARIABLES
     3  # Define these secrets as environment variables
     4  # ---------------------------------------------------------------------------------------------------------------------
     5  
     6  # ARM_CLIENT_ID
     7  # ARM_CLIENT_SECRET
     8  # ARM_SUBSCRIPTION_ID
     9  # ARM_TENANT_ID
    10  
    11  # ---------------------------------------------------------------------------------------------------------------------
    12  # OPTIONAL PARAMETERS
    13  # These parameters have reasonable defaults.
    14  # ---------------------------------------------------------------------------------------------------------------------
    15  
    16  variable "location" {
    17    description = "The Azure location where to deploy your resources too"
    18    type        = string
    19    default     = "East US"
    20  }
    21  
    22  variable "postfix" {
    23    description = "A postfix string to centrally mitigate resource name collisions"
    24    type        = string
    25    default     = "resource"
    26  }
    27  
    28  variable "backend_host" {
    29    description = "The IP address or FQDN of the backend"
    30    type        = string
    31    default     = "www.bing.com"
    32  }