Skip to content

Commit

Permalink
update file with changes
Browse files Browse the repository at this point in the history
  • Loading branch information
cshea-msft committed Oct 5, 2023
1 parent 6d957e8 commit f4a6a23
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion quickstart/101-azfw-with-fwpolicy/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ variable "resource_group_name_prefix" {
variable "firewall_sku_tier" {
type = string
description = "Firewall SKU."
default = "Standard" # Valid values are Standard and Premium
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"
Expand Down
2 changes: 1 addition & 1 deletion quickstart/201-azfw-multi-addresses/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ output "resource_group_name" {
}
output "backend_admin_password" {
sensitive = true
value = azurerm_windows_virtual_machine.vm_backend.*.admin_password
value = azurerm_windows_virtual_machine.vm_backend[*].admin_password
}

0 comments on commit f4a6a23

Please sign in to comment.