github.com/darmach/terratest@v0.34.8-0.20210517103231-80931f95e3ff/examples/azure/terraform-azure-loadbalancer-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 # REQUIRED PARAMETERS 13 # You must provide a value for each of these parameters. 14 # --------------------------------------------------------------------------------------------------------------------- 15 16 # --------------------------------------------------------------------------------------------------------------------- 17 # OPTIONAL PARAMETERS 18 # These parameters have reasonable defaults. 19 # --------------------------------------------------------------------------------------------------------------------- 20 21 22 variable "lb_private_ip" { 23 description = "Private IP for the Private Load Balancer" 24 type = string 25 default = "10.200.2.10" 26 } 27 28 variable "location" { 29 description = "The Azure location where to deploy your resources too" 30 type = string 31 default = "East US" 32 } 33 34 variable "postfix" { 35 description = "A postfix string to centrally mitigate resource name collisions" 36 type = string 37 default = "resource" 38 }