cloudposse / terraform-aws-rds

Terraform module to provision AWS RDS instances
https://cloudposse.com/accelerate
Apache License 2.0
156 stars 181 forks source link

Doc: Fix syntax error with db_parameter and db_options #187

Open glensc opened 2 months ago

glensc commented 2 months ago

what


❯ tf plan
╷
│ Error: Missing attribute separator
│ 
│   on main.tf line 41, in module "rds_instance":
│   41:     { name  = "myisam_sort_buffer_size"   value = "1048576" },
│ 
│ Expected a newline or comma to mark the beginning of the next attribute.
╵
❯ tf plan
╷
│ Error: Missing attribute separator
│ 
│   on main.tf line 48, in module "rds_instance":
│   48:         { name = "SERVER_AUDIT_EVENTS"           value = "CONNECT" },
│ 
│ Expected a newline or comma to mark the beginning of the next attribute.
╵

why

references