2023-08-22 19:02:39 -04:00

19 lines
361 B
HCL

// Create Variables for Location and Tags
variable "location" {
default = "eastus"
}
variable "tags" {
default = {
environment = "dev"
costcenter = "1234556677"
owner = "cloud team"
workload = "azure firewall"
}
}
// Create Firewall Variables
variable "fw_sku" {
default = "Premium" # Valid values are Standard and Premium
}