fix quota issue

This commit is contained in:
github-actions[bot] 2024-11-04 05:56:07 +00:00
parent b73933a978
commit da94aaabca
3 changed files with 11 additions and 7 deletions

View File

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

View File

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

View File

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