Ran 'terraform fmt'

This commit is contained in:
Tom Archer 2023-05-12 17:10:12 -07:00
parent b4d429be35
commit 71cee46b77
2 changed files with 9 additions and 9 deletions

View File

@ -1,11 +1,11 @@
variable "resource_group_location" { variable "resource_group_location" {
type= string type = string
default = "eastus" default = "eastus"
description = "Location of the resource group." description = "Location of the resource group."
} }
variable "resource_group_name_prefix" { variable "resource_group_name_prefix" {
type= string type = string
default = "rg" default = "rg"
description = "Prefix of the resource group name that's combined with a random ID so name is unique in your Azure subscription." description = "Prefix of the resource group name that's combined with a random ID so name is unique in your Azure subscription."
} }
@ -19,7 +19,7 @@ variable "node_count" {
# For available Log Analytics regions, refer to: # For available Log Analytics regions, refer to:
# https://azure.microsoft.com/global-infrastructure/services/?products=monitor # https://azure.microsoft.com/global-infrastructure/services/?products=monitor
variable "log_analytics_workspace_location" { variable "log_analytics_workspace_location" {
type= string type = string
default = "eastus" default = "eastus"
description = "Location of the log analytics workspace." description = "Location of the log analytics workspace."
} }
@ -27,7 +27,7 @@ variable "log_analytics_workspace_location" {
# For Log Analytics pricing, refer to: # For Log Analytics pricing, refer to:
# https://azure.microsoft.com/pricing/details/monitor # https://azure.microsoft.com/pricing/details/monitor
variable "log_analytics_workspace_sku" { variable "log_analytics_workspace_sku" {
type=string type = string
description = "" description = ""
default = "PerGB2018" default = "PerGB2018"
} }