Skip to content

Commit c20893e

Browse files
author
igorkotof
committed
fixed outputs
1 parent 1ec4687 commit c20893e

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

outputs.tf

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
output "elasticache_replication_group_id" {
2-
value = join("", aws_elasticache_replication_group.default.id)
2+
value = aws_elasticache_replication_group.default.id
33
description = "The ID of the ElastiCache Replication Group."
44
}
55

66
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
88
description = "The address of the endpoint for the primary node in the replication group."
99
}
1010

@@ -14,37 +14,37 @@ output "elasticache_replication_group_member_clusters" {
1414
}
1515

1616
output "elasticache_parameter_group_id" {
17-
value = join("", aws_elasticache_parameter_group.default.id)
17+
value = aws_elasticache_parameter_group.default.id
1818
description = "The ElastiCache parameter group name."
1919
}
2020

2121
output "security_group_id" {
22-
value = join("", aws_security_group.default.id)
22+
value = aws_security_group.default.id
2323
description = "The ID of the Redis ElastiCache security group."
2424
}
2525

2626
output "security_group_arn" {
27-
value = join("", aws_security_group.default.arn)
27+
value = aws_security_group.default.arn
2828
description = "The ARN of the Redis ElastiCache security group."
2929
}
3030

3131
output "security_group_vpc_id" {
32-
value = join("", aws_security_group.default.vpc_id)
32+
value = aws_security_group.default.vpc_id
3333
description = "The VPC ID of the Redis ElastiCache security group."
3434
}
3535

3636
output "security_group_owner_id" {
37-
value = join("", aws_security_group.default.owner_id)
37+
value = aws_security_group.default.owner_id
3838
description = "The owner ID of the Redis ElastiCache security group."
3939
}
4040

4141
output "security_group_name" {
42-
value = join("", aws_security_group.default.name)
42+
value = aws_security_group.default.name
4343
description = "The name of the Redis ElastiCache security group."
4444
}
4545

4646
output "security_group_description" {
47-
value = join("", aws_security_group.default.description)
47+
value = aws_security_group.default.description
4848
description = "The description of the Redis ElastiCache security group."
4949
}
5050

0 commit comments

Comments
 (0)