Fix ACL token usage in consul input plugin (#3376)

(cherry picked from commit d2f9fc7d8c)
This commit is contained in:
Sergei Smolianinov
2017-10-23 22:31:27 +03:00
committed by Daniel Nelson
parent c44b4fcc89
commit 0dd3b0507b
2 changed files with 5 additions and 1 deletions

View File

@@ -69,6 +69,10 @@ func (c *Consul) createAPIClient() (*api.Client, error) {
config.Datacenter = c.Datacentre
}
if c.Token != "" {
config.Token = c.Token
}
if c.Username != "" {
config.HttpAuth = &api.HttpBasicAuth{
Username: c.Username,