Skip to content

Commit

Permalink
fix: change message outputs (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
leojaardim authored Apr 26, 2023
1 parent 745e820 commit 599a52f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions modules/docdb_parameter_group/outputs.tf
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
output "db_parameter_group_id" {
description = "The db subnet group name"
description = "The db parameter group name"
value = try(aws_docdb_cluster_parameter_group.this[0].id, "")
}

output "db_parameter_group_arn" {
description = "ARN"
description = "The db parameter group ARN"
value = try(aws_docdb_cluster_parameter_group.this[0].arn, "")
}
2 changes: 1 addition & 1 deletion modules/docdb_subnet_group/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ output "db_subnet_group_id" {
}

output "db_subnet_group_arn" {
description = "ARN"
description = "The db subnet group ARN"
value = try(aws_docdb_subnet_group.this[0].arn, "")
}

0 comments on commit 599a52f

Please sign in to comment.