Skip to content

Commit

Permalink
Small Terraform 0.12 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
OliverKlette85 committed Oct 11, 2019
1 parent d8d7883 commit b0bcb70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ resource "aws_rds_cluster" "main" {
preferred_maintenance_window = var.preferred_maintenance_window
port = local.port
db_subnet_group_name = aws_db_subnet_group.main[0].name
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)
snapshot_identifier = var.snapshot_identifier
storage_encrypted = var.storage_encrypted
apply_immediately = var.apply_immediately
Expand Down

0 comments on commit b0bcb70

Please sign in to comment.