2014-07-25 23:03:17 +02:00
|
|
|
package consul
|
|
|
|
|
|
|
|
import (
|
|
|
|
"log"
|
|
|
|
|
2015-01-07 02:11:29 +01:00
|
|
|
consulapi "github.com/hashicorp/consul/api"
|
2014-07-25 23:03:17 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
type Config struct {
|
|
|
|
Datacenter string `mapstructure:"datacenter"`
|
|
|
|
Address string `mapstructure:"address"`
|
2015-05-07 01:12:32 +02:00
|
|
|
Scheme string `mapstructure:"scheme"`
|
2014-07-25 23:03:17 +02:00
|
|
|
}
|
|
|
|
|
2015-01-22 21:45:55 +01:00
|
|
|
// Client() returns a new client for accessing consul.
|
2014-07-25 23:03:17 +02:00
|
|
|
//
|
|
|
|
func (c *Config) Client() (*consulapi.Client, error) {
|
|
|
|
config := consulapi.DefaultConfig()
|
|
|
|
if c.Datacenter != "" {
|
|
|
|
config.Datacenter = c.Datacenter
|
|
|
|
}
|
|
|
|
if c.Address != "" {
|
|
|
|
config.Address = c.Address
|
|
|
|
}
|
2015-05-07 01:12:32 +02:00
|
|
|
if c.Scheme != "" {
|
|
|
|
config.Scheme = c.Scheme
|
|
|
|
}
|
2014-07-25 23:03:17 +02:00
|
|
|
client, err := consulapi.NewClient(config)
|
|
|
|
|
2015-05-07 01:12:32 +02:00
|
|
|
log.Printf("[INFO] Consul Client configured with address: '%s', scheme: '%s', datacenter: '%s'",
|
|
|
|
config.Address, config.Scheme, config.Datacenter)
|
2014-07-25 23:03:17 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return client, nil
|
|
|
|
}
|