An opinionated Terraform module that can be used to create and manage an AKS cluster in Azure in a simplified way.
Name |
Description |
Type |
Default |
Required |
admin_azuread_group_names |
The list of Azure AD groups that should be granted admin access to the AKS cluster. |
list(string) |
[] |
no |
instance_type |
The type of instance to use for the single node pool to be created. (NOTE: The upstream AKS module doesn't support multiple node pools yet.) |
string |
"Standard_D2s_v3" |
no |
kube_proxy_disabled |
Disable kube-proxy |
bool |
false |
no |
kubernetes_version |
The version of Kubernetes to use. |
string |
"1.29.4" |
no |
max_nodes |
The maximum number of nodes in the AKS cluster. |
number |
4 |
no |
min_nodes |
The minimum number of nodes in the AKS cluster. |
number |
3 |
no |
name |
The name of the AKS cluster. |
string |
n/a |
yes |
network_plugin |
The network plugin to use (one of 'azure' or 'none'). |
string |
"azure" |
no |
owner |
Your name. |
string |
n/a |
yes |
paid_tier |
Whether to use the "Standard" AKS tier. |
bool |
false |
no |
region |
The region in which to create the AKS cluster and associated resources. |
string |
n/a |
yes |
resource_group_name |
The name of the Azure resource group in which to create the AKS cluster. |
string |
n/a |
yes |
root_disk_size |
The size (in GB) of the root disk. |
number |
100 |
no |
service_cidr |
The CIDR block to use for services. |
string |
n/a |
yes |
sp_enabled |
Set to false to disable service principle creation |
bool |
true |
no |
subnet_id |
The ID of the subnet where to place the node pool. |
string |
n/a |
yes |
Copyright 2022 Isovalent, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.