Skip to content

Commit 965a52d

Browse files
feat: Grants output marked as sensitive data (#33)
1 parent 8478d2d commit 965a52d

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

outputs.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,5 @@ output "aliases" {
4848
output "grants" {
4949
description = "A map of grants created and their attributes"
5050
value = aws_kms_grant.this
51+
sensitive = true
5152
}

wrappers/outputs.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
output "wrapper" {
22
description = "Map of outputs of a wrapper."
33
value = module.wrapper
4-
# sensitive = false # No sensitive module output found
4+
sensitive = true # At least one sensitive module output (grants) found (requires Terraform 0.14+)
55
}

0 commit comments

Comments
 (0)