Add commas to the example to fix syntax error due to missing line break
what
Added commas to line 40, 41, 47, 48 of the example of usage in the README, each time after the name value
why
My Editor mentioned the syntax error and after terraform initit also complained about it with
╷ │ Error: Missing attribute separator │ │ on main.tf line 40, in module "rds_instance": │ 40: { name = "myisam_sort_buffer_size" value = "1048576" }, │ │ Expected a newline or comma to mark the beginning of the next attribute.
so I added the commas it asked me for.
Add commas to the example to fix syntax error due to missing line break
what
why
terraform init
it also complained about it with╷ │ Error: Missing attribute separator │ │ on main.tf line 40, in module "rds_instance": │ 40: { name = "myisam_sort_buffer_size" value = "1048576" }, │ │ Expected a newline or comma to mark the beginning of the next attribute.
so I added the commas it asked me for.references
NoN