Skip to content

Commit b0bcb70

Browse files
Small Terraform 0.12 fix
1 parent d8d7883 commit b0bcb70

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ resource "aws_rds_cluster" "main" {
3939
preferred_maintenance_window = var.preferred_maintenance_window
4040
port = local.port
4141
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)]
42+
vpc_security_group_ids = concat([aws_security_group.main[0].id], var.extra_security_groups)
4343
snapshot_identifier = var.snapshot_identifier
4444
storage_encrypted = var.storage_encrypted
4545
apply_immediately = var.apply_immediately

0 commit comments

Comments
 (0)