Skip to content

Commit 360c945

Browse files
updated reference in readme.md file
1 parent 7953f00 commit 360c945

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

README.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ This Terraform module provisions an Amazon RDS PostgreSQL database on AWS. Amazo
2222
```hcl
2323
module "rds-pg" {
2424
source = "squareops/postgresql-rds/aws"
25-
name = "skaf"
26-
db_name = "postgres"
25+
name = "postgresql"
26+
db_name = "proddb"
2727
vpc_id = "vpc-047eb8acfb73"
2828
multi_az = "true"
2929
subnet_ids = ["subnet-b39cfc", "subnet-090b8d8"]
@@ -43,7 +43,10 @@ module "rds-pg" {
4343
final_snapshot_identifier_prefix = "final"
4444
}
4545
```
46-
Refer [examples](https://github.com/RohitSquareops/terraform-aws-rds-postgresql/tree/main/example/complete) for more details.
46+
Refer [examples](https://github.com/squareops/terraform-aws-rds-postgresql/tree/main/example/complete) for more details.
47+
48+
## IAM Permissions
49+
The required IAM permissions to create resources from this module can be found [here](https://github.com/squareops/terraform-aws-rds-postgresql/blob/main/IAM.md)
4750

4851
<!-- BEGINNING OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
4952
## Requirements
@@ -130,7 +133,7 @@ Refer [examples](https://github.com/RohitSquareops/terraform-aws-rds-postgresql/
130133

131134
To report an issue with a project:
132135

133-
1. Check the repository's [issue tracker](https://github.com/RohitSquareops/terraform-aws-rds-postgresql/issues) on GitHub
136+
1. Check the repository's [issue tracker](https://github.com/squareops/terraform-aws-rds-postgresql/issues) on GitHub
134137
2. Search to check if the issue has already been reported
135138
3. If you can't find an answer to your question in the documentation or issue tracker, you can ask a question by creating a new issue. Make sure to provide enough context and details.
136139

@@ -142,7 +145,7 @@ Apache License, Version 2.0, January 2004 (https://www.apache.org/licenses/LICEN
142145

143146
To support our GitHub project by liking it, you can follow these steps:
144147

145-
1. Visit the repository: Navigate to the [GitHub repository](https://github.com/RohitSquareops/terraform-aws-rds-postgresql)
148+
1. Visit the repository: Navigate to the [GitHub repository](https://github.com/squareops/terraform-aws-rds-postgresql)
146149

147150
2. Click the "Star" button: On the repository page, you'll see a "Star" button in the upper right corner. Clicking on it will star the repository, indicating your support for the project.
148151

example/complete/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ No providers.
2424

2525
| Name | Source | Version |
2626
|------|--------|---------|
27-
| <a name="module_rds-pg"></a> [rds-pg](#module\_rds-pg) | [email protected]:sq-ia/terraform-aws-rds-postgresql.git | n/a |
27+
| <a name="module_rds-pg"></a> [rds-pg](#module\_rds-pg) | squareops/postgresql-rds/aws | n/a |
2828

2929
## Resources
3030

example/complete/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ locals {
33
name = "postgresql"
44
vpc_id = "vpc-00ae5571c1"
55
family = "postgres15"
6-
subnet_ids = ["subnet-0d9a81939c6dd2a6e","subnet-0fd26f0d73dc9e73d"]
6+
subnet_ids = ["subnet-0d9a8193d2a6e","subnet-0fd263dc9e73d"]
77
environment = "prod"
88
kms_key_arn = "arn:aws:kms:us-east-2:22222222:key/73ff9e84-83e1-fe29623338a9"
99
engine_version = "15.2"

0 commit comments

Comments
 (0)