Skip to content

Commit 01ddf7a

Browse files
committed
fix(infra): add temp name for rotation
1 parent d8ffac1 commit 01ddf7a

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

infra/development/terraform/main.tf

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,10 @@ resource "azurerm_kubernetes_cluster" "main" {
3737
dns_prefix = "akssimpleapp"
3838

3939
default_node_pool {
40-
name = "default"
41-
node_count = 1 # Keep 1 on-demand for stateful services
42-
vm_size = "Standard_B2as_v2" # AMD EPYC - 20% cheaper than Intel B2s
40+
name = "default"
41+
node_count = 1 # Keep 1 on-demand for stateful services
42+
vm_size = "Standard_B2as_v2" # AMD EPYC - 20% cheaper than Intel B2s
43+
temporary_name_for_rotation = "defaulttemp" # Required for VM size change
4344
}
4445

4546
identity {

0 commit comments

Comments
 (0)