Skip to content

Commit 941042d

Browse files
committed
update example
1 parent bb2591e commit 941042d

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

examples/localdns_config/main.tf

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,19 +41,18 @@ module "aks" {
4141
prefix = random_id.name.hex
4242
rbac_aad_tenant_id = data.azurerm_client_config.current.tenant_id
4343
resource_group_name = local.resource_group.name
44-
kubernetes_version = "1.30" # don't specify the patch version!
44+
kubernetes_version = "1.33" # don't specify the patch version!
4545
automatic_channel_upgrade = "patch"
46-
agents_availability_zones = ["1", "2"]
4746
agents_count = null
4847
agents_max_count = 2
4948
agents_max_pods = 100
5049
agents_min_count = 1
5150
agents_pool_name = "testnodepool"
52-
agents_size = "Standard_DS2_v2"
51+
agents_size = "Standard_DS2_v3"
5352
auto_scaling_enabled = true
5453
client_id = var.client_id
5554
client_secret = var.client_secret
56-
log_analytics_workspace_enabled = true
55+
log_analytics_workspace_enabled = false
5756
net_profile_dns_service_ip = "10.0.0.10"
5857
net_profile_service_cidr = "10.0.0.0/16"
5958
network_plugin = "azure"

examples/localdns_config/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ variable "create_resource_group" {
1616
}
1717

1818
variable "location" {
19-
default = "East US"
19+
default = "East US 2"
2020
description = "The location where the Managed Kubernetes Cluster should be created."
2121
}
2222

0 commit comments

Comments
 (0)