Skip to content

Commit

Permalink
Merge pull request #2318 from zaidmohd/k8s-securestring
Browse files Browse the repository at this point in the history
Azure Arc-enabled Kubernetes - changed secure string variable type
  • Loading branch information
dkirby-ms authored Dec 7, 2023
2 parents c82d0c8 + 0122fc1 commit 9df3e3d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion azure_arc_k8s_jumpstart/aks/terraform/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ variable "location" {

variable "kubernetes_version" {
description = "Kubernetes version deployed"
default = "1.27.1"
default = "1.27.7"
}

variable "node_count" {
Expand All @@ -39,4 +39,5 @@ variable "client_id" {

variable "client_secret" {
description = "The Client Secret for the Service Principal to use for this AKS Managed Kubernetes Cluster"
sensitive = true
}
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
}
},
"password": {
"type": "string",
"type": "securestring",
"metadata": {
"description": "Unique SPN password"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
}
},
"password": {
"type": "string",
"type": "securestring",
"metadata": {
"description": "Unique SPN password"
}
Expand Down

0 comments on commit 9df3e3d

Please sign in to comment.