Load Cloudstack configuration from file (#13926)

* Load Cloudstack configuration from file

* Add ConflictsWith
This commit is contained in:
Mickaël Canévet 2017-05-24 15:23:32 +02:00 committed by Sander van Harmelen
parent 17bbdef711
commit e4bd7e2430
1 changed files with 54 additions and 12 deletions

View File

@ -1,6 +1,9 @@
package cloudstack package cloudstack
import ( import (
"fmt"
"github.com/go-ini/ini"
"github.com/hashicorp/terraform/helper/schema" "github.com/hashicorp/terraform/helper/schema"
"github.com/hashicorp/terraform/terraform" "github.com/hashicorp/terraform/terraform"
) )
@ -11,20 +14,35 @@ func Provider() terraform.ResourceProvider {
Schema: map[string]*schema.Schema{ Schema: map[string]*schema.Schema{
"api_url": &schema.Schema{ "api_url": &schema.Schema{
Type: schema.TypeString, Type: schema.TypeString,
Required: true, Optional: true,
DefaultFunc: schema.EnvDefaultFunc("CLOUDSTACK_API_URL", nil), DefaultFunc: schema.EnvDefaultFunc("CLOUDSTACK_API_URL", nil),
ConflictsWith: []string{"config", "profile"},
}, },
"api_key": &schema.Schema{ "api_key": &schema.Schema{
Type: schema.TypeString, Type: schema.TypeString,
Required: true, Optional: true,
DefaultFunc: schema.EnvDefaultFunc("CLOUDSTACK_API_KEY", nil), DefaultFunc: schema.EnvDefaultFunc("CLOUDSTACK_API_KEY", nil),
ConflictsWith: []string{"config", "profile"},
}, },
"secret_key": &schema.Schema{ "secret_key": &schema.Schema{
Type: schema.TypeString, Type: schema.TypeString,
Required: true, Optional: true,
DefaultFunc: schema.EnvDefaultFunc("CLOUDSTACK_SECRET_KEY", nil), DefaultFunc: schema.EnvDefaultFunc("CLOUDSTACK_SECRET_KEY", nil),
ConflictsWith: []string{"config", "profile"},
},
"config": &schema.Schema{
Type: schema.TypeString,
Optional: true,
ConflictsWith: []string{"api_url", "api_key", "secret_key"},
},
"profile": &schema.Schema{
Type: schema.TypeString,
Optional: true,
ConflictsWith: []string{"api_url", "api_key", "secret_key"},
}, },
"http_get_only": &schema.Schema{ "http_get_only": &schema.Schema{
@ -72,10 +90,34 @@ func Provider() terraform.ResourceProvider {
} }
func providerConfigure(d *schema.ResourceData) (interface{}, error) { func providerConfigure(d *schema.ResourceData) (interface{}, error) {
apiURL := d.Get("api_url").(string)
apiKey := d.Get("api_key").(string)
secretKey := d.Get("secret_key").(string)
if configFile, ok := d.GetOk("config"); ok {
config, err := ini.Load(configFile.(string))
if err != nil {
return nil, err
}
section, err := config.GetSection(d.Get("profile").(string))
if err != nil {
return nil, err
}
apiURL = section.Key("url").String()
apiKey = section.Key("apikey").String()
secretKey = section.Key("secretkey").String()
}
if apiURL == "" || apiKey == "" || secretKey == "" {
return nil, fmt.Errorf("No api_url or api_key or secretKey provided")
}
config := Config{ config := Config{
APIURL: d.Get("api_url").(string), APIURL: apiURL,
APIKey: d.Get("api_key").(string), APIKey: apiKey,
SecretKey: d.Get("secret_key").(string), SecretKey: secretKey,
HTTPGETOnly: d.Get("http_get_only").(bool), HTTPGETOnly: d.Get("http_get_only").(bool),
Timeout: int64(d.Get("timeout").(int)), Timeout: int64(d.Get("timeout").(int)),
} }