Secret manager flag sensitive output (#786)

* Added sensitive output value

* Updated Readme

* updated readme
This commit is contained in:
ddaluka 2022-08-29 16:52:52 +05:30 committed by GitHub
parent c798625868
commit 16e14fdb0a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -91,7 +91,7 @@ module "secret-manager" {
| [ids](outputs.tf#L17) | Secret ids keyed by secret_ids (names). | |
| [secrets](outputs.tf#L24) | Secret resources. | |
| [version_ids](outputs.tf#L29) | Version ids keyed by secret name : version name. | |
| [versions](outputs.tf#L36) | Secret versions. | |
| [versions](outputs.tf#L36) | Secret versions. | |
<!-- END TFDOC -->
## Requirements

View File

@ -36,4 +36,5 @@ output "version_ids" {
output "versions" {
description = "Secret versions."
value = google_secret_manager_secret_version.default
sensitive = true
}