update files

This commit is contained in:
cshea15
2023-09-24 12:28:21 -04:00
parent d6cb019394
commit 5c810c97a3
7 changed files with 273 additions and 19 deletions

View File

@ -5,15 +5,19 @@ variable "resource_group_location" {
}
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"
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_name" {
variable "firewall_sku_tier" {
type = string
description = "SKU name for the firewall."
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"
}
}
variable "virtual_machine_size" {