Commit 397ac22e authored by morihaya's avatar morihaya Committed by GitHub

docs: create_option_group -> create_db_option_group in README (#348)

parent 189edd89
...@@ -137,8 +137,8 @@ Users have the ability to: ...@@ -137,8 +137,8 @@ Users have the ability to:
- Pass the name of an option group to use that has been created outside of the module: - Pass the name of an option group to use that has been created outside of the module:
```hcl ```hcl
create_option_group = false create_db_option_group = false
option_group_name = "prod-instance-mysql-8.0" # must already exist in AWS option_group_name = "prod-instance-mysql-8.0" # must already exist in AWS
``` ```
- Skip creating an option group for PostgreSQL entirely as that is not supported - Skip creating an option group for PostgreSQL entirely as that is not supported
...@@ -151,7 +151,7 @@ Users have the ability to: ...@@ -151,7 +151,7 @@ Users have the ability to:
- Use a default option group provided by AWS - Use a default option group provided by AWS
```hcl ```hcl
create_option_group = false create_db_option_group = false
``` ```
## Parameter Groups ## Parameter Groups
...@@ -176,14 +176,14 @@ Users have the ability to: ...@@ -176,14 +176,14 @@ Users have the ability to:
- Pass the name of a parameter group to use that has been created outside of the module: - Pass the name of a parameter group to use that has been created outside of the module:
```hcl ```hcl
create_parameter_group = false create_db_parameter_group = false
parameter_group_name = "prod-instance-mysql-8.0" # must already exist in AWS parameter_group_name = "prod-instance-mysql-8.0" # must already exist in AWS
``` ```
- Use a default parameter group provided by AWS - Use a default parameter group provided by AWS
```hcl ```hcl
create_parameter_group = false create_db_parameter_group = false
``` ```
## Examples ## Examples
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment