terraform/quickstart/201-k8s-cluster-with-tf-and...
github-actions[bot] 2bfc5cfbf2 Update TestRecord 2024-11-17 03:48:00 +00:00
..
TestRecord.md Update TestRecord 2024-11-17 03:48:00 +00:00
azure-vote.yaml Removed Log Analytics resources from sample as not used in article 2023-05-26 11:37:59 -07:00
main.tf Fixing command to get public key 2024-07-02 13:53:46 +08:00
outputs.tf Removed Log Analytics resources from sample as not used in article 2023-05-26 11:37:59 -07:00
providers.tf Made edits per Code Review 2023-05-24 11:59:56 -07:00
readme.md User Story 125263 (#238) 2023-07-24 09:01:38 +08:00
ssh.tf Fixing command to get public key 2024-07-02 13:53:46 +08:00
variables.tf User Story 125263 (#238) 2023-07-24 09:01:38 +08:00

readme.md

Kubernetes cluster with Azure Kubernetes Service (AKS)

This template provisions an AKS / Azure Kubernetes service (also known as a Managed Kubernetes Cluster).

Terraform resource types

Variables

Name Description Default
resource_group_name_prefix Prefix of the resource group name that's combined with a random ID so name is unique in your Azure subscription. rg
resource_group_location Location of the resource group. eastus
node_count Initial number of nodes which should exist in this Node Pool. Value must be between 1 and 1000. 3
msi_id The Managed Service Identity ID. Set this value if you're running this example using Managed Identity as the authentication method. null
username The username for the new cluster. azureadmin

Example

To see how to run this example, see Create a Kubernetes cluster with Azure Kubernetes Service using Terraform.