diff --git a/website/source/api/auth/approle/index.html.md b/website/source/api/auth/approle/index.html.md index 3c4453a8b235..2e10bee93260 100644 --- a/website/source/api/auth/approle/index.html.md +++ b/website/source/api/auth/approle/index.html.md @@ -583,7 +583,6 @@ AppRole (such as client IP CIDR) are also evaluated. ``` $ curl \ - --header "X-Vault-Token: ..." \ --request POST \ --data @payload.json \ https://vault.rocks/v1/auth/approle/login diff --git a/website/source/api/auth/aws/index.html.md b/website/source/api/auth/aws/index.html.md index 78ca41d3a09e..8ba467199ce4 100644 --- a/website/source/api/auth/aws/index.html.md +++ b/website/source/api/auth/aws/index.html.md @@ -955,7 +955,6 @@ along with its RSA digest can be supplied to this endpoint. ``` $ curl \ - --header "X-Vault-Token: ..." \ --request POST \ --data @payload.json \ https://vault.rocks/v1/auth/aws/login diff --git a/website/source/api/auth/gcp/index.html.md b/website/source/api/auth/gcp/index.html.md index 48bac63c61de..0669f592ab57 100644 --- a/website/source/api/auth/gcp/index.html.md +++ b/website/source/api/auth/gcp/index.html.md @@ -358,7 +358,6 @@ entity and then authorizes the entity for the given role. ``` $ curl \ - --header "X-Vault-Token: ..." \ --request POST \ --data @payload.json \ https://vault.rocks/v1/auth/gcp/login diff --git a/website/source/api/auth/github/index.html.md b/website/source/api/auth/github/index.html.md index 68eecacf9361..8020c731012e 100644 --- a/website/source/api/auth/github/index.html.md +++ b/website/source/api/auth/github/index.html.md @@ -111,7 +111,6 @@ Login using GitHub access token. ``` $ curl \ - --header "X-Vault-Token: ..." \ --request POST \ https://vault.rocks/v1/auth/github/login ``` diff --git a/website/source/api/auth/okta/index.html.md b/website/source/api/auth/okta/index.html.md index efa149e16408..2bd22b204237 100644 --- a/website/source/api/auth/okta/index.html.md +++ b/website/source/api/auth/okta/index.html.md @@ -365,8 +365,8 @@ Login with the username and password. ``` $ curl \ - --header "X-Vault-Token: ..." \ --request POST \ + --data @payload.json \ https://vault.rocks/v1/auth/okta/login/fred ``` diff --git a/website/source/api/auth/radius/index.html.md b/website/source/api/auth/radius/index.html.md index 23d152001441..833130f70bc7 100644 --- a/website/source/api/auth/radius/index.html.md +++ b/website/source/api/auth/radius/index.html.md @@ -211,8 +211,8 @@ Login with the username and password. ``` $ curl \ - --header "X-Vault-Token: ..." \ --request POST \ + --data @payload.json \ https://vault.rocks/v1/auth/radius/login/test-user ``` diff --git a/website/source/api/auth/userpass/index.html.md b/website/source/api/auth/userpass/index.html.md index 259e2dbe6113..42a35d99a2cf 100644 --- a/website/source/api/auth/userpass/index.html.md +++ b/website/source/api/auth/userpass/index.html.md @@ -226,7 +226,6 @@ Login with the username and password. ``` $ curl \ - --header "X-Vault-Token: ..." \ --request POST \ --data @payload.json \ https://vault.rocks/v1/auth/userpass/login/mitchellh