From c55631aea89047364ef7cd0bb0bab82e2b1a8dbe Mon Sep 17 00:00:00 2001 From: Tom Archer Date: Wed, 31 May 2023 07:29:11 -0700 Subject: [PATCH] Wordsmithed description of msi_id variable --- quickstart/201-k8s-cluster-with-tf-and-aks/readme.md | 1 + quickstart/201-k8s-cluster-with-tf-and-aks/variables.tf | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/quickstart/201-k8s-cluster-with-tf-and-aks/readme.md b/quickstart/201-k8s-cluster-with-tf-and-aks/readme.md index efce1c2e..3d5d0a7e 100644 --- a/quickstart/201-k8s-cluster-with-tf-and-aks/readme.md +++ b/quickstart/201-k8s-cluster-with-tf-and-aks/readme.md @@ -21,6 +21,7 @@ This template provisions an [AKS / Azure Kubernetes service (also known as a Man | `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 | ## Example diff --git a/quickstart/201-k8s-cluster-with-tf-and-aks/variables.tf b/quickstart/201-k8s-cluster-with-tf-and-aks/variables.tf index a6505850..019c4d25 100644 --- a/quickstart/201-k8s-cluster-with-tf-and-aks/variables.tf +++ b/quickstart/201-k8s-cluster-with-tf-and-aks/variables.tf @@ -18,6 +18,6 @@ variable "node_count" { variable "msi_id" { type = string - description = "The Managed Service Identity ID used to create the service principal. If this value is null (the default), the AzureRM provider configuration Object ID is used.." + description = "The Managed Service Identity ID. Set this value if you're running this example using Managed Identity as the authentication method." default = null } \ No newline at end of file