1
1
output "elasticache_replication_group_id" {
2
- value = join ( " " , aws_elasticache_replication_group. default . id )
2
+ value = aws_elasticache_replication_group. default . id
3
3
description = " The ID of the ElastiCache Replication Group."
4
4
}
5
5
6
6
output "elasticache_replication_group_primary_endpoint_address" {
7
- value = join ( " " , aws_elasticache_replication_group. default . primary_endpoint_address )
7
+ value = aws_elasticache_replication_group. default . primary_endpoint_address
8
8
description = " The address of the endpoint for the primary node in the replication group."
9
9
}
10
10
@@ -14,37 +14,37 @@ output "elasticache_replication_group_member_clusters" {
14
14
}
15
15
16
16
output "elasticache_parameter_group_id" {
17
- value = join ( " " , aws_elasticache_parameter_group. default . id )
17
+ value = aws_elasticache_parameter_group. default . id
18
18
description = " The ElastiCache parameter group name."
19
19
}
20
20
21
21
output "security_group_id" {
22
- value = join ( " " , aws_security_group. default . id )
22
+ value = aws_security_group. default . id
23
23
description = " The ID of the Redis ElastiCache security group."
24
24
}
25
25
26
26
output "security_group_arn" {
27
- value = join ( " " , aws_security_group. default . arn )
27
+ value = aws_security_group. default . arn
28
28
description = " The ARN of the Redis ElastiCache security group."
29
29
}
30
30
31
31
output "security_group_vpc_id" {
32
- value = join ( " " , aws_security_group. default . vpc_id )
32
+ value = aws_security_group. default . vpc_id
33
33
description = " The VPC ID of the Redis ElastiCache security group."
34
34
}
35
35
36
36
output "security_group_owner_id" {
37
- value = join ( " " , aws_security_group. default . owner_id )
37
+ value = aws_security_group. default . owner_id
38
38
description = " The owner ID of the Redis ElastiCache security group."
39
39
}
40
40
41
41
output "security_group_name" {
42
- value = join ( " " , aws_security_group. default . name )
42
+ value = aws_security_group. default . name
43
43
description = " The name of the Redis ElastiCache security group."
44
44
}
45
45
46
46
output "security_group_description" {
47
- value = join ( " " , aws_security_group. default . description )
47
+ value = aws_security_group. default . description
48
48
description = " The description of the Redis ElastiCache security group."
49
49
}
50
50
0 commit comments