fix quota issue
This commit is contained in:
parent
b73933a978
commit
da94aaabca
@ -30,7 +30,7 @@ resource "azurerm_app_service_plan" "example" {
|
||||
|
||||
sku {
|
||||
tier = var.asp_sku_tier
|
||||
size = "S1"
|
||||
size = "P0V3"
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -15,19 +15,23 @@ output "fa_name" {
|
||||
}
|
||||
|
||||
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" {
|
||||
value = azurerm_storage_account.example.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
|
||||
value = azurerm_storage_account.example.secondary_access_key
|
||||
sensitive = true
|
||||
}
|
||||
|
||||
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" {
|
||||
|
@ -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" {
|
||||
|
Loading…
x
Reference in New Issue
Block a user