Skip to content

Commit

Permalink
Add reference to migration guide and regenerate
Browse files Browse the repository at this point in the history
  • Loading branch information
aaron-lane committed Apr 5, 2019
1 parent 08639c3 commit 2232089
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 19 deletions.
4 changes: 2 additions & 2 deletions modules/private-cluster/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}"
}
22 changes: 11 additions & 11 deletions modules/private-cluster/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ variable "disable_legacy_metadata_endpoints" {
default = "true"
}


variable "node_pools" {
type = "list"
description = "List of maps containing node pools"
Expand Down Expand Up @@ -216,33 +217,32 @@ variable "service_account" {
description = "The service account to default running nodes as if not overridden in `node_pools`. Defaults to the compute engine default service account. May also specify `create` to automatically create a cluster-specific service account"
default = ""
}

variable "enable_private_endpoint" {
description = "(Beta) Whether the master's internal IP address is used as the cluster endpoint"
default = false
description = "(Beta) Whether the master's internal IP address is used as the cluster endpoint"
default = false
}

variable "enable_private_nodes" {
description = "(Beta) Whether nodes have internal IP addresses only"
default = false
description = "(Beta) Whether nodes have internal IP addresses only"
default = false
}

variable "master_ipv4_cidr_block" {
description = "(Beta) The IP range in CIDR notation to use for the hosted master network"
default = "10.0.0.0/28"
description = "(Beta) The IP range in CIDR notation to use for the hosted master network"
default = "10.0.0.0/28"
}

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"
}
4 changes: 2 additions & 2 deletions 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}"
}
9 changes: 5 additions & 4 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ variable "disable_legacy_metadata_endpoints" {
default = "true"
}


variable "node_pools" {
type = "list"
description = "List of maps containing node pools"
Expand Down Expand Up @@ -219,15 +220,15 @@ variable "service_account" {

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 2232089

Please sign in to comment.