Feature request: Nested secrets. #18296
Unanswered
MikeFindsThings
asked this question in
Code Security
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Secrets should be able to be nested inside of other secrets.
For example, when deploying to Azure Kuberentes Service in a Github Action credentials are required in JSON format. Currently Github Actions secrets does allow and properly passes JSON secrets to this Action. However the JSON must include the required "clientID", "clientSecret", "subscriptionId", and "tenantId" to be added as string literals when entering the secret, like so:
A more dynamic approach would be to allow nested secrets:
This allows for only having to update a single secret if any of the values change.
Beta Was this translation helpful? Give feedback.
All reactions