File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
rds-postgres/primary-instance Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ module "server_security_group" {
88
88
89
89
allowed_security_group_ids = concat (
90
90
var. allowed_security_group_ids ,
91
- module. client_security_group . * . id
91
+ module. client_security_group [ * ] . id
92
92
)
93
93
94
94
name = coalesce (
@@ -138,7 +138,7 @@ resource "aws_db_subnet_group" "this" {
138
138
}
139
139
140
140
locals {
141
- owned_vpc_security_group_ids = module. server_security_group . * . id
141
+ owned_vpc_security_group_ids = module. server_security_group [ * ] . id
142
142
shared_vpc_security_group_ids = var. server_security_group_ids
143
143
144
144
parameter_group_name = coalesce (
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ output "admin_username" {
10
10
11
11
output "client_security_group_id" {
12
12
description = " Name of the security group created for clients"
13
- value = join (" " , module. client_security_group . * . id )
13
+ value = join (" " , module. client_security_group [ * ] . id )
14
14
}
15
15
16
16
output "default_database" {
@@ -45,5 +45,5 @@ output "primary_kms_key" {
45
45
46
46
output "server_security_group_id" {
47
47
description = " Name of the security group created for the server"
48
- value = join (" " , module. server_security_group . * . id )
48
+ value = join (" " , module. server_security_group [ * ] . id )
49
49
}
You can’t perform that action at this time.
0 commit comments