Terraform RDS Configuration Provider
The RDS Configuration provider manages RDS settings in an AWS RDS MySQL instance or Aurora MySQL cluster.
Requirements
- Terraform >= 0.13.x
- Go >= 1.18
- One or more AWS RDS or Aurora MySQL instances
Building The Provider
- Clone the repository.
- Enter the repository directory.
- Build the provider using the
make install
command:
$ make install
Using the Provider
See docs/index.md
.
Developing the Provider
If you wish to work on the provider, you’ll first need Go installed on your machine (see Requirements above).
To compile the provider, run make install
. This will build the provider and
put the provider binary in the local terraform plugin directory
(e.g. ~/.terraform.d/plugins/
.
To generate or update documentation, run make generate
. (It will also be
generated as part of make install
.
To Do
- Write acceptance tests.