Skip to content

Commit

Permalink
Make this easier for new users (hashicorp#6211)
Browse files Browse the repository at this point in the history
  • Loading branch information
scarolan authored and chrishoffman committed Feb 11, 2019
1 parent 75266af commit 73e5fb1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website/source/api/auth/kubernetes/index.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ access the Kubernetes API.

### Parameters
- `kubernetes_host` `(string: <required>)` - Host must be a host string, a host:port pair, or a URL to the base of the Kubernetes API server.
- `kubernetes_ca_cert` `(string: "")` - PEM encoded CA cert for use by the TLS client used to talk with the Kubernetes API.
- `kubernetes_ca_cert` `(string: "")` - PEM encoded CA cert for use by the TLS client used to talk with the Kubernetes API. NOTE: Every line must end with a newline: \n
- `token_reviewer_jwt` `(string: "")` - A service account JWT used to access the TokenReview
API to validate other JWTs during login. If not set
the JWT used for login will be used to access the API.
Expand All @@ -45,7 +45,7 @@ access the Kubernetes API.
```json
{
"kubernetes_host": "https://192.168.99.100:8443",
"kubernetes_ca_cert": "-----BEGIN CERTIFICATE-----.....-----END CERTIFICATE-----",
"kubernetes_ca_cert": "-----BEGIN CERTIFICATE-----\n.....\n-----END CERTIFICATE-----",
"pem_keys": "-----BEGIN CERTIFICATE-----\n.....\n-----END CERTIFICATE-----"
}
```
Expand Down

0 comments on commit 73e5fb1

Please # to comment.