Skip to content

Commit 49a096e

Browse files
committed
resolve example source
1 parent aca01e1 commit 49a096e

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,17 @@ This repository serves as a child module for managing Postgres Logical Databases
1515
```terraform
1616
provider "postgresql" {
1717
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"
2424
}
2525
2626
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
2929
# version = "x.x.x"
3030
3131
databases = [

0 commit comments

Comments
 (0)