Skip to content

Commit 85face3

Browse files
authored
Merge pull request #15 from scribd/vadimka/mark-sensitive-outputs
[SERF-1846] Mark secrets as sensitive by default
2 parents 958c6db + 5f4b172 commit 85face3

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ module "user" {
229229

230230
| Name | Description | Sensitive |
231231
| --------------- | ---------------------------------------- | --------- |
232-
| `all` | Map of names and arns of created secrets | no |
232+
| `all` | Map of names and arns of created secrets | yes |
233233
| `kms_key_arn` | The master key ARN | no |
234234
| `kms_alias_arn` | The master key alias ARN | no |
235235

outputs.tf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ output "all" {
66
arn = aws_secretsmanager_secret.app[name].id
77
}
88
]
9+
10+
sensitive = true
911
}
1012

1113
output "kms_key_arn" {

0 commit comments

Comments
 (0)