Skip to content

Commit

Permalink
Merge pull request #380 from recognizegroup/feature/18306-expose-secr…
Browse files Browse the repository at this point in the history
…et-values

Expose key vault secrets values as sensitive AB#18306
  • Loading branch information
tom-reinders authored Jan 9, 2024
2 parents d439eae + 538fd6c commit b0da81e
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions modules/azure/key_vault_secrets_put_once/outputs.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
output "secrets" {
value = {
for prop in values(resource.azurerm_key_vault_secret.secret)[*] :
prop.name => prop.value
}
sensitive = true
}

0 comments on commit b0da81e

Please sign in to comment.