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,7 +137,7 @@ Users have the ability to:
- Pass the name of an option group to use that has been created outside of the module:
```hcl
create_option_group = false
create_db_option_group = false
option_group_name = "prod-instance-mysql-8.0" # must already exist in AWS
```
......@@ -151,7 +151,7 @@ Users have the ability to:
- Use a default option group provided by AWS
```hcl
create_option_group = false
create_db_option_group = false
```
## Parameter Groups
......@@ -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:
```hcl
create_parameter_group = false
create_db_parameter_group = false
parameter_group_name = "prod-instance-mysql-8.0" # must already exist in AWS
```
- Use a default parameter group provided by AWS
```hcl
create_parameter_group = false
create_db_parameter_group = false
```
## 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