Skip to content

Commit

Permalink
Update outputs.tf
Browse files Browse the repository at this point in the history
  • Loading branch information
anilchalissery authored Sep 19, 2024
1 parent 28f8fb6 commit 739bc8f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ output "secret_id" {
value = try(aws_secretsmanager_secret.this[0].id, null)
}

output "secret_name" {
description = "The name of the secret"
value = try(aws_secretsmanager_secret.this[0].name, null)
}

output "secret_replica" {
description = "Attributes of the replica created"
value = try(aws_secretsmanager_secret.this[0].replica, null)
Expand Down

0 comments on commit 739bc8f

Please sign in to comment.