2014-07-25 23:03:17 +02:00
|
|
|
package consul
|
|
|
|
|
|
|
|
import (
|
|
|
|
"log"
|
|
|
|
|
2014-10-13 20:35:45 +02:00
|
|
|
"github.com/hashicorp/terraform/helper/schema"
|
2014-07-25 23:03:17 +02:00
|
|
|
"github.com/hashicorp/terraform/terraform"
|
2014-10-13 20:35:45 +02:00
|
|
|
"github.com/mitchellh/mapstructure"
|
2014-07-25 23:03:17 +02:00
|
|
|
)
|
|
|
|
|
2014-10-13 20:35:45 +02:00
|
|
|
// Provider returns a terraform.ResourceProvider.
|
|
|
|
func Provider() terraform.ResourceProvider {
|
|
|
|
return &schema.Provider{
|
|
|
|
Schema: map[string]*schema.Schema{
|
|
|
|
"datacenter": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Optional: true,
|
|
|
|
},
|
|
|
|
|
|
|
|
"address": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Optional: true,
|
|
|
|
},
|
2015-05-07 01:12:32 +02:00
|
|
|
|
|
|
|
"scheme": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Optional: true,
|
|
|
|
},
|
2014-10-13 20:35:45 +02:00
|
|
|
},
|
2014-09-29 19:28:08 +02:00
|
|
|
|
2014-10-13 20:35:45 +02:00
|
|
|
ResourcesMap: map[string]*schema.Resource{
|
2016-04-03 05:37:11 +02:00
|
|
|
"consul_keys": resourceConsulKeys(),
|
|
|
|
"consul_key_prefix": resourceConsulKeyPrefix(),
|
2014-07-25 23:03:17 +02:00
|
|
|
},
|
|
|
|
|
2014-10-13 20:35:45 +02:00
|
|
|
ConfigureFunc: providerConfigure,
|
|
|
|
}
|
2014-07-25 23:03:17 +02:00
|
|
|
}
|
|
|
|
|
2014-10-13 20:35:45 +02:00
|
|
|
func providerConfigure(d *schema.ResourceData) (interface{}, error) {
|
|
|
|
var config Config
|
|
|
|
configRaw := d.Get("").(map[string]interface{})
|
|
|
|
if err := mapstructure.Decode(configRaw, &config); err != nil {
|
|
|
|
return nil, err
|
2014-07-25 23:03:17 +02:00
|
|
|
}
|
2014-07-26 04:14:48 +02:00
|
|
|
log.Printf("[INFO] Initializing Consul client")
|
2014-10-13 20:35:45 +02:00
|
|
|
return config.Client()
|
2014-07-25 23:03:17 +02:00
|
|
|
}
|