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 9f39bf6 commit 8e494dcCopy full SHA for 8e494dc
rds-postgres/primary-instance/main.tf
@@ -88,7 +88,7 @@ module "server_security_group" {
88
89
allowed_security_group_ids = concat(
90
var.allowed_security_group_ids,
91
- module.client_security_group.*.id
+ module.client_security_group[*].id
92
)
93
94
name = coalesce(
@@ -138,7 +138,7 @@ resource "aws_db_subnet_group" "this" {
138
}
139
140
locals {
141
- owned_vpc_security_group_ids = module.server_security_group.*.id
+ owned_vpc_security_group_ids = module.server_security_group[*].id
142
shared_vpc_security_group_ids = var.server_security_group_ids
143
144
parameter_group_name = coalesce(
0 commit comments