17 lines
463 B
HCL
17 lines
463 B
HCL
variable "resource_group_location" {
|
|
type = string
|
|
description = "Location for all resources."
|
|
default = "eastus"
|
|
}
|
|
|
|
variable "resource_group_name_prefix" {
|
|
type = string
|
|
description = "Prefix of the resource group name that's combined with a random ID so name is unique in your Azure subscription."
|
|
default = "rg"
|
|
}
|
|
|
|
variable "backend_address" {
|
|
type = string
|
|
description = "Backend address."
|
|
default = "www.bing.com"
|
|
} |