Update the FIXME/TODO style to match Google style guides
This commit is contained in:
parent
f3add9e7ef
commit
68cadd3c2a
|
@ -13,7 +13,7 @@ func Provider() terraform.ResourceProvider {
|
||||||
"host": {
|
"host": {
|
||||||
Type: schema.TypeString,
|
Type: schema.TypeString,
|
||||||
Optional: true,
|
Optional: true,
|
||||||
// FIXME: Remove POSTGRESQL_HOST in 0.8
|
// TODO(sean@): Remove POSTGRESQL_HOST in 0.8
|
||||||
DefaultFunc: schema.MultiEnvDefaultFunc([]string{"PGHOST", "POSTGRESQL_HOST"}, nil),
|
DefaultFunc: schema.MultiEnvDefaultFunc([]string{"PGHOST", "POSTGRESQL_HOST"}, nil),
|
||||||
Description: "The PostgreSQL server address",
|
Description: "The PostgreSQL server address",
|
||||||
},
|
},
|
||||||
|
@ -26,14 +26,14 @@ func Provider() terraform.ResourceProvider {
|
||||||
"username": {
|
"username": {
|
||||||
Type: schema.TypeString,
|
Type: schema.TypeString,
|
||||||
Optional: true,
|
Optional: true,
|
||||||
// FIXME: Remove POSTGRESQL_USER in 0.8
|
// TODO(sean@): Remove POSTGRESQL_USER in 0.8
|
||||||
DefaultFunc: schema.MultiEnvDefaultFunc([]string{"PGUSER", "POSTGRESQL_USER"}, "postgres"),
|
DefaultFunc: schema.MultiEnvDefaultFunc([]string{"PGUSER", "POSTGRESQL_USER"}, "postgres"),
|
||||||
Description: "Username for PostgreSQL server connection",
|
Description: "Username for PostgreSQL server connection",
|
||||||
},
|
},
|
||||||
"password": {
|
"password": {
|
||||||
Type: schema.TypeString,
|
Type: schema.TypeString,
|
||||||
Optional: true,
|
Optional: true,
|
||||||
// FIXME: Remove POSTGRESQL_PASSWORD in 0.8
|
// TODO(sean@): Remove POSTGRESQL_PASSWORD in 0.8
|
||||||
DefaultFunc: schema.MultiEnvDefaultFunc([]string{"PGPASSWORD", "POSTGRESQL_PASSWORD"}, nil),
|
DefaultFunc: schema.MultiEnvDefaultFunc([]string{"PGPASSWORD", "POSTGRESQL_PASSWORD"}, nil),
|
||||||
Description: "Password for PostgreSQL server connection",
|
Description: "Password for PostgreSQL server connection",
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue