Browse Source

Remove warning for consul 1.17 deprecation (#19897)

pull/19906/head^2
Ronald 12 months ago committed by GitHub
parent
commit
e13fbc743e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      agent/http.go
  2. 2
      website/content/api-docs/api-structure.mdx
  3. 4
      website/content/docs/upgrading/upgrade-specific.mdx

2
agent/http.go

@ -389,7 +389,7 @@ func (s *HTTPHandlers) wrap(handler endpoint, methods []string) http.HandlerFunc
logURL = strings.Replace(logURL, token, "<hidden>", -1)
}
httpLogger.Warn("This request used the token query parameter "+
"which is deprecated and will be removed in Consul 1.17",
"which is deprecated and will be removed in a future Consul version",
"logUrl", logURL)
}
logURL = aclEndpointRE.ReplaceAllString(logURL, "$1<hidden>$4")

2
website/content/api-docs/api-structure.mdx

@ -42,7 +42,7 @@ $ curl \
**Security Note:** Though you could pass the token through the `?token=` query parameter,
this method is highly discouraged because the token can show up in access logs as part of the URL.
The `?token=` query parameter is deprecated and will be removed in Consul 1.17.
The `?token=` query parameter is deprecated and will be removed in a future Consul version.
To learn more about the ACL system read the [documentation](/consul/docs/security/acl).

4
website/content/docs/upgrading/upgrade-specific.mdx

@ -91,13 +91,13 @@ The `connect.enable_serverless_plugin` configuration option was removed. Lambda
#### Deprecating authentication via token query parameter
Providing a Consul ACL token in API requests using the `token` query parameter is deprecated and will be removed in Consul 1.17.
Providing a Consul ACL token in API requests using the `token` query parameter is deprecated and will be removed in a future Consul version.
Instead, you should provide the token through the `X-Consul-Token` header or with the Bearer scheme in the authorization header as described in the [API authentication documentation](/consul/api-docs/api-structure#authentication).
Check whether you are using a `token` query parameter by searching your Consul agent logs for the message:
```shell-session hideClipboard
$ This request used the token query parameter which is deprecated and will be removed in Consul 1.17
$ This request used the token query parameter which is deprecated and will be removed in a future Consul version
```
Deprecated authentication using the `token` query parameter:

Loading…
Cancel
Save