cloudposse / terraform-aws-rds-replica

Terraform module that provisions an RDS replica
https://cloudposse.com/accelerate
Apache License 2.0
30 stars 27 forks source link

Fix issue with subnet_ids list variable being put into a list in the aws_db_subnet_group resource and issue with records in dns_host_name module #13

Closed jross-ai closed 8 months ago

jross-ai commented 3 years ago

Closes #11

Currently, the subnet_ids variable is defined as a list in the variables.tf. This variable is then getting set to a list which is causing the aws_db_subnet_group to fail to create because the subnet_ids are being passed as a list of lists, not a list of strings. This PR should resolve this issue and close issue #11

Also upgrading the version on the dns_host_name module to fix an issue with that resource