Skip to content

Commit 397ac22

Browse files
authored
docs: create_option_group -> create_db_option_group in README (#348)
1 parent 189edd8 commit 397ac22

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -137,8 +137,8 @@ Users have the ability to:
137137
- Pass the name of an option group to use that has been created outside of the module:
138138

139139
```hcl
140-
create_option_group = false
141-
option_group_name = "prod-instance-mysql-8.0" # must already exist in AWS
140+
create_db_option_group = false
141+
option_group_name = "prod-instance-mysql-8.0" # must already exist in AWS
142142
```
143143

144144
- Skip creating an option group for PostgreSQL entirely as that is not supported
@@ -151,7 +151,7 @@ Users have the ability to:
151151
- Use a default option group provided by AWS
152152

153153
```hcl
154-
create_option_group = false
154+
create_db_option_group = false
155155
```
156156

157157
## Parameter Groups
@@ -176,14 +176,14 @@ Users have the ability to:
176176
- Pass the name of a parameter group to use that has been created outside of the module:
177177

178178
```hcl
179-
create_parameter_group = false
179+
create_db_parameter_group = false
180180
parameter_group_name = "prod-instance-mysql-8.0" # must already exist in AWS
181181
```
182182

183183
- Use a default parameter group provided by AWS
184184

185185
```hcl
186-
create_parameter_group = false
186+
create_db_parameter_group = false
187187
```
188188

189189
## Examples

0 commit comments

Comments
 (0)