fix quota issue
This commit is contained in:
		| @@ -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" | ||||||
|   } |   } | ||||||
| } | } | ||||||
|  |  | ||||||
|   | |||||||
| @@ -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" { | ||||||
|   | |||||||
| @@ -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" { | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user