terraform/builtin/providers/consul/config.go

33 lines
689 B
Go
Raw Normal View History

2014-07-25 23:03:17 +02:00
package consul
import (
"log"
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"`
}
// 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
}
client, err := consulapi.NewClient(config)
2014-07-26 04:14:48 +02:00
log.Printf("[INFO] Consul Client configured with address: '%s', datacenter: '%s'",
config.Address, config.Datacenter)
2014-07-25 23:03:17 +02:00
if err != nil {
return nil, err
}
return client, nil
}