Markdium-Kubernetes and Secrets Management in Cloud
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# environment variable referencing Google Secret Manager secret (without version) | |
MY_DB_PASSWORD=gcp:secretmanager:projects/$PROJECT_ID/secrets/mydbpassword | |
# OR versioned secret (with numeric version or 'latest') | |
MY_DB_PASSWORD=gcp:secretmanager:projects/$PROJECT_ID/secrets/mydbpassword/versions/2 | |
# environment variable passed to a child process, as resolved by `secrets-init` | |
MY_DB_PASSWORD=very-secret-password |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment