2018-10-10 23:42:57 +02:00
|
|
|
package pg
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"database/sql"
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/hashicorp/terraform/backend"
|
|
|
|
"github.com/hashicorp/terraform/helper/schema"
|
2020-10-03 18:02:13 +02:00
|
|
|
"github.com/lib/pq"
|
2018-10-10 23:42:57 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
statesTableName = "states"
|
2018-10-17 19:31:12 +02:00
|
|
|
statesIndexName = "states_by_name"
|
2018-10-10 23:42:57 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// New creates a new backend for Postgres remote state.
|
|
|
|
func New() backend.Backend {
|
|
|
|
s := &schema.Backend{
|
|
|
|
Schema: map[string]*schema.Schema{
|
|
|
|
"conn_str": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Required: true,
|
|
|
|
Description: "Postgres connection string; a `postgres://` URL",
|
|
|
|
},
|
|
|
|
|
|
|
|
"schema_name": &schema.Schema{
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Optional: true,
|
2019-02-26 01:05:53 +01:00
|
|
|
Description: "Name of the automatically managed Postgres schema to store state",
|
2019-02-26 21:59:02 +01:00
|
|
|
Default: "terraform_remote_state",
|
2018-10-10 23:42:57 +02:00
|
|
|
},
|
2019-08-27 17:14:32 +02:00
|
|
|
|
|
|
|
"skip_schema_creation": &schema.Schema{
|
|
|
|
Type: schema.TypeBool,
|
|
|
|
Optional: true,
|
|
|
|
Description: "If set to `true`, Terraform won't try to create the Postgres schema",
|
|
|
|
Default: false,
|
|
|
|
},
|
2018-10-10 23:42:57 +02:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
result := &Backend{Backend: s}
|
|
|
|
result.Backend.ConfigureFunc = result.configure
|
|
|
|
return result
|
|
|
|
}
|
|
|
|
|
|
|
|
type Backend struct {
|
|
|
|
*schema.Backend
|
|
|
|
|
|
|
|
// The fields below are set from configure
|
|
|
|
db *sql.DB
|
|
|
|
configData *schema.ResourceData
|
|
|
|
connStr string
|
|
|
|
schemaName string
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *Backend) configure(ctx context.Context) error {
|
|
|
|
// Grab the resource data
|
|
|
|
b.configData = schema.FromContextBackendConfig(ctx)
|
|
|
|
data := b.configData
|
|
|
|
|
|
|
|
b.connStr = data.Get("conn_str").(string)
|
2020-10-03 18:02:13 +02:00
|
|
|
b.schemaName = pq.QuoteIdentifier(data.Get("schema_name").(string))
|
2018-10-10 23:42:57 +02:00
|
|
|
|
|
|
|
db, err := sql.Open("postgres", b.connStr)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Prepare database schema, tables, & indexes.
|
|
|
|
var query string
|
2019-08-27 17:14:32 +02:00
|
|
|
|
|
|
|
if !data.Get("skip_schema_creation").(bool) {
|
|
|
|
// list all schemas to see if it exists
|
|
|
|
var count int
|
2020-10-03 18:02:13 +02:00
|
|
|
query = `select count(1) from information_schema.schemata where schema_name = $1`
|
|
|
|
if err := db.QueryRow(query, data.Get("schema_name").(string)).Scan(&count); err != nil {
|
2019-08-27 17:14:32 +02:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// skip schema creation if schema already exists
|
|
|
|
// `CREATE SCHEMA IF NOT EXISTS` is to be avoided if ever
|
|
|
|
// a user hasn't been granted the `CREATE SCHEMA` privilege
|
|
|
|
if count < 1 {
|
|
|
|
// tries to create the schema
|
|
|
|
query = `CREATE SCHEMA IF NOT EXISTS %s`
|
|
|
|
if _, err := db.Exec(fmt.Sprintf(query, b.schemaName)); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
2018-10-10 23:42:57 +02:00
|
|
|
}
|
|
|
|
query = `CREATE TABLE IF NOT EXISTS %s.%s (
|
2019-02-26 01:05:53 +01:00
|
|
|
id SERIAL PRIMARY KEY,
|
|
|
|
name TEXT,
|
|
|
|
data TEXT
|
2018-10-10 23:42:57 +02:00
|
|
|
)`
|
2019-05-01 06:32:05 +02:00
|
|
|
if _, err := db.Exec(fmt.Sprintf(query, b.schemaName, statesTableName)); err != nil {
|
2018-10-10 23:42:57 +02:00
|
|
|
return err
|
|
|
|
}
|
2018-10-17 19:31:12 +02:00
|
|
|
query = `CREATE UNIQUE INDEX IF NOT EXISTS %s ON %s.%s (name)`
|
2019-05-01 06:32:05 +02:00
|
|
|
if _, err := db.Exec(fmt.Sprintf(query, statesIndexName, b.schemaName, statesTableName)); err != nil {
|
2018-10-10 23:42:57 +02:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Assign db after its schema is prepared.
|
|
|
|
b.db = db
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|