Skip to content

Commit

Permalink
make config idempotent
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Nov 4, 2024
1 parent da94aaa commit d0a185d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion quickstart/101-azure-functions/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ resource "azurerm_app_service_plan" "example" {

sku {
tier = var.asp_sku_tier
size = "P0V3"
size = "P0v3"
}
}

Expand Down
2 changes: 1 addition & 1 deletion quickstart/101-azure-functions/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ variable "asp_name" {
variable "asp_sku_tier" {
description = "The SKU tier of the App Service Plan. Possible values are Free, Shared, Basic, Standard, Premium, PremiumV2, and PremiumV3."
type = string
default = "Standard"
default = "Premium0V3"
}

variable "fa_name" {
Expand Down

0 comments on commit d0a185d

Please sign in to comment.