Commit f6af441e authored by Anton Babenko's avatar Anton Babenko

Updated example to show usage of options group (fixed #63)

parent 8394e118
......@@ -78,7 +78,18 @@ module "db" {
options = [
{
option_name = "MARIADB_AUDIT_PLUGIN"
}
option_settings = [
{
name = "SERVER_AUDIT_EVENTS"
value = "CONNECT"
},
{
name = "SERVER_AUDIT_FILE_ROTATIONS"
value = "37"
},
]
},
]
}
```
......
......@@ -63,4 +63,21 @@ module "db" {
# Snapshot name upon DB deletion
final_snapshot_identifier = "demodb"
options = [
{
option_name = "MARIADB_AUDIT_PLUGIN"
option_settings = [
{
name = "SERVER_AUDIT_EVENTS"
value = "CONNECT"
},
{
name = "SERVER_AUDIT_FILE_ROTATIONS"
value = "37"
},
]
},
]
}
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