101-firewall-standard patch (#169)

* fix example

* add variable type
This commit is contained in:
Dingjia Chen
2023-02-21 00:17:48 -06:00
committed by GitHub
parent 1e7ae5e1c8
commit 4e0ad3a89c
4 changed files with 46 additions and 26 deletions

View File

@ -1,3 +1,11 @@
variable "resource_group_location" {
default = "eastus"
type = string
default = "eastus"
description = "Location of the resource group."
}
variable "prefix" {
type = string
default = "firewall-standard"
description = "Prefix of the resource name"
}