You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Terraform module to provision AWS [`RDS`](https://aws.amazon.com/rds/) instances
4
4
5
5
6
6
The module will create:
7
+
7
8
* DB instance (MySQL, Postgres, SQL Server, Oracle)
8
9
* DB Parameter Group
9
10
* DB Subnet Group
10
11
* DB Security Group
11
12
* DNS Record in Route53 for the DB endpoint
12
13
13
14
14
-
15
-
## Input Variables
15
+
## Inputs
16
16
17
17
-`stage` - The deployment stage (_e.g._`prod`, `staging`, `dev`)
18
18
-`namespace` - The namespace of the application the DB instance belongs to (_e.g._`global`, `shared`, or the name of your company like `cloudposse`)
@@ -49,6 +49,7 @@ The module will create:
49
49
-`final_snapshot_identifier` - Specifies whether or not to create a final snapshot for this database when destroing. This option **must** be set if `skip_final_snapshot` = `false`. E.g.: `"dbname-final-snapshot-${md5(timestamp())}"`
50
50
-`parameter_group_name` - (Optional) Name of the DB parameter group to associate (e.g. `mysql-5-6`)
File a GitHub [issue](https://github.com/cloudposse/terraform-aws-rds/issues), send us an [email](mailto:hello@cloudposse.com) or reach out to us on [Gitter](https://gitter.im/cloudposse/).
114
+
115
+
116
+
## Contributing
117
+
118
+
### Bug Reports & Feature Requests
119
+
120
+
Please use the [issue tracker](https://github.com/cloudposse/terraform-aws-rds/issues) to report any bugs or file feature requests.
121
+
122
+
### Developing
123
+
124
+
If you are interested in being a contributor and want to get involved in developing `terraform-aws-rds`, we would love to hear from you! Shoot us an [email](mailto:hello@cloudposse.com).
125
+
126
+
In general, PRs are welcome. We follow the typical "fork-and-pull" Git workflow.
127
+
128
+
1.**Fork** the repo on GitHub
129
+
2.**Clone** the project to your own machine
130
+
3.**Commit** changes to your own branch
131
+
4.**Push** your work back up to your fork
132
+
5. Submit a **Pull request** so that we can review your changes
133
+
134
+
**NOTE:** Be sure to merge the latest from "upstream" before making a pull request!
135
+
136
+
110
137
## License
111
138
112
-
Apache 2 License. See [`LICENSE`](LICENSE) for full details.
0 commit comments