Skip to content

Commit 2723ed1

Browse files
committed
Merge branch 'master' of github.com:sourcehawk/terraform-aws-postgres-bootstrap
2 parents b2facb6 + 1103e3d commit 2723ed1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Note that if you only want to bootstrap your database, and do not need an RDS in
1717
### Minimal example
1818

1919
```hcl
20-
module "postgres_databases" {
20+
module "postgres_servers" {
2121
source = "terraform-aws-postgres-bootstrap"
2222
2323
environment = "dev"
@@ -62,7 +62,7 @@ module "postgres_databases" {
6262
### Full example
6363

6464
```hcl
65-
module "terraform-aws-postgres-bootstrap" {
65+
module "postrges_servers" {
6666
source = "terraform-aws-postgres-bootstrap"
6767
6868
environment = "dev"

modules/postgres_init/modules/script/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ module "postgres_script" {
3333

3434
### What to script?
3535

36-
While many examples might show simple SQL statements like `INSERT` or `CREATE TABLE`, those are typically better handled with other migration tools. Scripting in this module should be used for bootstrapping functionality that requires Infrastructure as Code (IaC). This can be for examples this such as:
36+
While many examples might show simple SQL statements like `INSERT` or `CREATE TABLE`, those are typically better handled with other migration tools. Scripting in this module should be used for bootstrapping functionality that requires Infrastructure as Code (IaC). This can be for examples:
3737

3838
1. **Setting User Roles**: Assign roles and permissions to users
3939
2. **Creating Foreign Data Wrappers (FDWs)**: Set up FDWs and server definition for cross-database queries.

0 commit comments

Comments
 (0)