Skip to content

Commit

Permalink
Fix format issues in autogen templates
Browse files Browse the repository at this point in the history
  • Loading branch information
aaron-lane committed Apr 12, 2019
1 parent a98e90b commit 718b6a3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion autogen/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -110,5 +110,5 @@ output "node_pools_versions" {

output "service_account" {
description = "The service account to default running nodes as if not overridden in `node_pools`."
value = "${local.service_account}"
value = "${local.service_account}"
}
6 changes: 3 additions & 3 deletions autogen/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -246,15 +246,15 @@ variable "master_ipv4_cidr_block" {

variable "basic_auth_username" {
description = "The username to be used with Basic Authentication. An empty value will disable Basic Authentication, which is the recommended configuration."
default = ""
default = ""
}

variable "basic_auth_password" {
description = "The password to be used with Basic Authentication."
default = ""
default = ""
}

variable "issue_client_certificate" {
description = "Issues a client certificate to authenticate to the cluster endpoint. To maximize the security of your cluster, leave this option disabled. Client certificates don't automatically rotate and aren't easily revocable. WARNING: changing this after cluster creation is destructive!"
default = "false"
default = "false"
}

0 comments on commit 718b6a3

Please sign in to comment.