-
Notifications
You must be signed in to change notification settings - Fork 453
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Keyvaults - Securing secrets parameter by using object #1022
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please also update the parameters.json
file.
"secrets": {
"value": {
"secureList": [
{
"name": "secretName",
"value": "secretValue",
"contentType": "Something",
"attributesExp": 1702648632,
"attributesNbf": 10000,
"roleAssignments": [
{
"roleDefinitionIdOrName": "Reader",
"principalIds": [
"<<deploymentSpId>>"
]
}
]
}
]
}
}
Hey @vgaupset, thanks for the contribution. Just checked it out locally and suggested a few minor changes (rename + parameter file). Thanks for you contribution :) |
Co-authored-by: Alexander Sehr <[email protected]>
@MrMCake No problem :) I have changed the PR in compliance with requested changes. |
Change
Converting
secrets
parameter to secure object. The array type does not have thesecure
option and will therefore be displayed in plaintext in Azure portal (in deployments or export template).Type of Change
Please delete options that are not relevant.
(Due to change from array to object)
Checklist