package postgresql import ( "github.com/hashicorp/errwrap" "github.com/hashicorp/terraform/helper/schema" "github.com/hashicorp/terraform/terraform" ) // Provider returns a terraform.ResourceProvider. func Provider() terraform.ResourceProvider { return &schema.Provider{ Schema: map[string]*schema.Schema{ "host": { Type: schema.TypeString, Optional: true, // TODO(sean@): Remove POSTGRESQL_HOST in 0.8 DefaultFunc: schema.MultiEnvDefaultFunc([]string{"PGHOSTADDR", "PGHOST", "POSTGRESQL_HOST"}, nil), Description: "Name of PostgreSQL server address to connect to", }, "port": { Type: schema.TypeInt, Optional: true, DefaultFunc: schema.EnvDefaultFunc("PGPORT", 5432), Description: "The PostgreSQL port number to connect to at the server host, or socket file name extension for Unix-domain connections", }, "username": { Type: schema.TypeString, Optional: true, // TODO(sean@): Remove POSTGRESQL_USER in 0.8 DefaultFunc: schema.MultiEnvDefaultFunc([]string{"PGUSER", "POSTGRESQL_USER"}, "postgres"), Description: "PostgreSQL user name to connect as", }, "password": { Type: schema.TypeString, Optional: true, // TODO(sean@): Remove POSTGRESQL_PASSWORD in 0.8 DefaultFunc: schema.MultiEnvDefaultFunc([]string{"PGPASSWORD", "POSTGRESQL_PASSWORD"}, nil), Description: "Password to be used if the PostgreSQL server demands password authentication", }, "sslmode": { Type: schema.TypeString, Optional: true, DefaultFunc: schema.EnvDefaultFunc("PGSSLMODE", nil), Description: "This option determines whether or with what priority a secure SSL TCP/IP connection will be negotiated with the PostgreSQL server", }, "connect_timeout": { Type: schema.TypeInt, Optional: true, Default: 15, DefaultFunc: schema.EnvDefaultFunc("PGCONNECT_TIMEOUT", nil), Description: "Maximum wait for connection, in seconds. Zero or not specified means wait indefinitely.", }, }, ResourcesMap: map[string]*schema.Resource{ "postgresql_database": resourcePostgreSQLDatabase(), "postgresql_role": resourcePostgreSQLRole(), "postgresql_extension": resourcePostgreSQLExtension(), }, ConfigureFunc: providerConfigure, } } func providerConfigure(d *schema.ResourceData) (interface{}, error) { config := Config{ Host: d.Get("host").(string), Port: d.Get("port").(int), Username: d.Get("username").(string), Password: d.Get("password").(string), Timeout: d.Get("connect_timeout").(int), SslMode: d.Get("sslmode").(string), } client, err := config.NewClient() if err != nil { return nil, errwrap.Wrapf("Error initializing PostgreSQL client: %s", err) } return client, nil }