AKS Managed Cluster
Creating an AKS cluster with Standard tier
defaults:
resource_group: rg-aks-test
resources:
- type: "Microsoft.ContainerService/managedClusters"
name: aks-minimal
api_version: "2025-10-01"
location: eastus
sku:
name: Base
tier: Standard
identity:
type: SystemAssigned
props:
dns_prefix: aksmin
agent_pool_profiles:
- name: nodepool1
count: 1
vm_size: Standard_B2s
os_type: Linux
mode: System
os_disk_size_gb: 30
network_profile:
network_plugin: kubenet
load_balancer_sku: basic
enable_rbac: trueCreating an AKS cluster with Free tier
Creating an AKS cluster with Premium tier
Last updated