File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -15,17 +15,17 @@ This repository serves as a child module for managing Postgres Logical Databases
15
15
``` terraform
16
16
provider "postgresql" {
17
17
scheme = "postgres"
18
- host = var.db_hostname
19
- username = var.db_username
20
- port = var.db_port
21
- password = var.db_password
22
- superuser = var.db_superuser
23
- sslmode = var.db_sslmode
18
+ host = "localhost"
19
+ username = "admin_user"
20
+ port = 5432
21
+ password = "demo-only-password"
22
+ superuser = false
23
+ sslmode = "disable"
24
24
}
25
25
26
26
module "logical_dbs" {
27
- source = "https://github.com/masterpointio/terraform-postgres-logical-dbs"
28
- # Masterpoint highly suggests pinning every module to a specific version
27
+ source = "git:: https://github.com/masterpointio/terraform-postgres-logical-dbs.git "
28
+ # Masterpoint recommends pinning every module to a specific version
29
29
# version = "x.x.x"
30
30
31
31
databases = [
You can’t perform that action at this time.
0 commit comments