fix quota issue

This commit is contained in:
github-actions[bot] 2024-11-04 05:56:07 +00:00 committed by lonegunmanb
parent 6b503a1302
commit 0e236b9035
3 changed files with 11 additions and 7 deletions

View File

@ -30,7 +30,7 @@ resource "azurerm_app_service_plan" "example" {
sku {
tier = var.asp_sku_tier
size = "S1"
size = "P0V3"
}
}

View File

@ -16,18 +16,22 @@ output "fa_name" {
output "sa_primary_access_key" {
value = azurerm_storage_account.example.primary_access_key
sensitive = true
}
output "sa_primary_connection_string" {
value = azurerm_storage_account.example.primary_connection_string
sensitive = true
}
output "sa_secondary_access_key" {
value = azurerm_storage_account.example.secondary_access_key
sensitive = true
}
output "sa_secondary_connection_string" {
value = azurerm_storage_account.example.secondary_connection_string
sensitive = true
}
output "asp_id" {

View File

@ -12,14 +12,14 @@ variable "resource_group_name_prefix" {
variable "resource_group_location" {
type = string
default = "westus"
default = "westeurope"
description = "Location of the resource group."
}
variable "sa_account_tier" {
description = "The tier of the storage account. Possible values are Standard and Premium."
type = string
default = "Standard"
default = "Premium"
}
variable "sa_account_replication_type" {