Skip to content

Commit 67ca995

Browse files
committed
Removing redundant default copy in docs
1 parent d6f6e50 commit 67ca995

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,17 +85,17 @@ Then perform the following commands on the root folder:
8585

8686
| Name | Description | Type | Default | Required |
8787
|------|-------------|:----:|:-----:|:-----:|
88-
| basic\_auth\_password | Kubernetes HTTP Basic auth password. Defaults to empty string. Only used if `enable_basic_auth` is true | string | `` | no |
89-
| basic\_auth\_username | Kubernetes HTTP Basic auth username. Defaults to empty string. Only used if `enable_basic_auth` is true | string | `` | no |
88+
| basic\_auth\_password | Kubernetes HTTP Basic auth password. Only used if `enable_basic_auth` is true | string | `` | no |
89+
| basic\_auth\_username | Kubernetes HTTP Basic auth username. Only used if `enable_basic_auth` is true | string | `` | no |
9090
| description | The description of the cluster | string | `` | no |
91-
| enable\_basic\_auth | Basic authentication allows a user to authenticate to the cluster with a username and password. To maximize the security of your cluster, disable this option. Basic authentication is not recommended because it provides no confidentiality protection for transmitted credentials. Default: true | string | `true` | no |
91+
| enable\_basic\_auth | Basic authentication allows a user to authenticate to the cluster with a username and password. To maximize the security of your cluster, disable this option. Basic authentication is not recommended because it provides no confidentiality protection for transmitted credentials | string | `true` | no |
9292
| horizontal\_pod\_autoscaling | Enable horizontal pod autoscaling addon | string | `false` | no |
9393
| http\_load\_balancing | Enable httpload balancer addon | string | `true` | no |
9494
| ip\_masq\_link\_local | Whether to masquerade traffic to the link-local prefix (169.254.0.0/16). | string | `false` | no |
9595
| ip\_masq\_resync\_interval | The interval at which the agent attempts to sync its ConfigMap file from the disk. | string | `60s` | no |
9696
| ip\_range\_pods | The secondary ip range to use for pods | string | - | yes |
9797
| ip\_range\_services | The secondary ip range to use for pods | string | - | yes |
98-
| issue\_client\_certificate | 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 | string | `false` | no |
98+
| issue\_client\_certificate | 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! | string | `false` | no |
9999
| kubernetes\_dashboard | Enable kubernetes dashboard addon | string | `false` | no |
100100
| kubernetes\_version | The Kubernetes version of the masters. If set to 'latest' it will pull latest available version in the selected region. | string | `latest` | no |
101101
| logging\_service | The logging service that the cluster should write logs to. Available options include logging.googleapis.com, logging.googleapis.com/kubernetes (beta), and none | string | `logging.googleapis.com` | no |

variables.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -191,21 +191,21 @@ variable "monitoring_service" {
191191
}
192192

193193
variable "enable_basic_auth" {
194-
description = "Basic authentication allows a user to authenticate to the cluster with a username and password. To maximize the security of your cluster, disable this option. Basic authentication is not recommended because it provides no confidentiality protection for transmitted credentials. Default: true"
194+
description = "Basic authentication allows a user to authenticate to the cluster with a username and password. To maximize the security of your cluster, disable this option. Basic authentication is not recommended because it provides no confidentiality protection for transmitted credentials"
195195
default = true
196196
}
197197

198198
variable "basic_auth_username" {
199-
description = "Kubernetes HTTP Basic auth username. Defaults to empty string. Only used if `enable_basic_auth` is true"
199+
description = "Kubernetes HTTP Basic auth username. Only used if `enable_basic_auth` is true"
200200
default = ""
201201
}
202202

203203
variable "basic_auth_password" {
204-
description = "Kubernetes HTTP Basic auth password. Defaults to empty string. Only used if `enable_basic_auth` is true"
204+
description = "Kubernetes HTTP Basic auth password. Only used if `enable_basic_auth` is true"
205205
default = ""
206206
}
207207

208208
variable "issue_client_certificate" {
209-
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"
209+
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!"
210210
default = false
211211
}

0 commit comments

Comments
 (0)