terraform/builtin/providers/mailgun/config.go

35 lines
615 B
Go
Raw Normal View History

2014-08-25 00:40:54 +02:00
package mailgun
import (
"log"
"os"
"github.com/pearkes/mailgun"
)
type Config struct {
APIKey string `mapstructure:"api_key"`
2014-08-25 00:40:54 +02:00
}
// Client() returns a new client for accessing mailgun.
//
func (c *Config) Client() (*mailgun.Client, error) {
// If we have env vars set (like in the acc) tests,
// we need to override the values passed in here.
if v := os.Getenv("MAILGUN_API_KEY"); v != "" {
c.APIKey = v
}
// We don't set a domain right away
client, err := mailgun.NewClient(c.APIKey)
if err != nil {
return nil, err
}
log.Printf("[INFO] Mailgun Client configured ")
return client, nil
}