We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8d7883 commit b0bcb70Copy full SHA for b0bcb70
main.tf
@@ -39,7 +39,7 @@ resource "aws_rds_cluster" "main" {
39
preferred_maintenance_window = var.preferred_maintenance_window
40
port = local.port
41
db_subnet_group_name = aws_db_subnet_group.main[0].name
42
- vpc_security_group_ids = [concat([aws_security_group.main[0].id], var.extra_security_groups)]
+ vpc_security_group_ids = concat([aws_security_group.main[0].id], var.extra_security_groups)
43
snapshot_identifier = var.snapshot_identifier
44
storage_encrypted = var.storage_encrypted
45
apply_immediately = var.apply_immediately
0 commit comments