azfw quickstarts (#245)

* adding azfw quickstarts
This commit is contained in:
Charles J Shea
2023-09-03 22:23:48 -04:00
committed by GitHub
parent 382bc865d3
commit 8aa0c51a71
10 changed files with 553 additions and 0 deletions

View File

@ -0,0 +1,22 @@
variable "resource_group_location" {
type = string
description = "Location for all resources."
default = "eastus"
}
variable "resource_group_name_prefix" {
type = string
description = "Prefix for the Resource Group Name that's combined with a random id so name is unique in your Azure subcription."
default = "rg"
}
variable "firewall_sku_tier" {
type = string
description = "Firewall SKU."
default = "Premium" # Valid values are Standard and Premium
validation {
condition = contains(["Standard", "Premium"], var.firewall_sku_tier)
error_message = "The sku must be one of the following: Standard, Premium"
}
}