increase create timeout

This commit is contained in:
github-actions[bot] 2024-10-30 05:25:29 +00:00
parent 20f388a4ab
commit af54768aa4
2 changed files with 5 additions and 1 deletions

View File

@ -55,4 +55,8 @@ resource "azurerm_kubernetes_cluster" "aks" {
} }
edge_zone = var.aks_extended_zone edge_zone = var.aks_extended_zone
timeouts {
create = "3h"
}
} }

View File

@ -6,7 +6,7 @@ variable "resource_group_name_prefix" {
variable "resource_group_location" { variable "resource_group_location" {
type = string type = string
default = "West US 2" default = "West US"
description = "Location of the resource group." description = "Location of the resource group."
} }