https://github.com/levkk/aws-rds-parameter-group-to-tf
Convert RDS parameter group to a Terraform parameter group
https://github.com/levkk/aws-rds-parameter-group-to-tf
rds terraform
Last synced: about 2 months ago
JSON representation
Convert RDS parameter group to a Terraform parameter group
- Host: GitHub
- URL: https://github.com/levkk/aws-rds-parameter-group-to-tf
- Owner: levkk
- Created: 2019-12-11T18:21:53.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-06-08T17:39:29.000Z (about 6 years ago)
- Last Synced: 2025-10-03T18:28:44.706Z (9 months ago)
- Topics: rds, terraform
- Language: Python
- Size: 14.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AWS RDS Parameter Group To Terraform Converter
Converts AWS RDS Parameter Group to a Terraform object. Helps during database major version upgrades.
## Requirements
1. Python3
2. A working `awscli` with read access to RDS.
## Installation
`pip install aws-rds-parameter-group-to-tf`
## Usage
Directly using the CLI:
```bash
$ aws configure # Make sure you are authenticated with AWS.
$ parametergrouptotf --name my-db-parameter-group
```
Or if you have your parameter group already in JSON format:
```bash
$ cat your-param-group.json | parametergrouptotf --stdin
```