2023-08-11 10:11:38 +08:00

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"
}