-
Bicep version Describe the bug To Reproduce # An of secret names to copy from keyvault A to keyvault B
param secretNames array
# An array of principal ids to assign the "Key Vault Secret Users" RBAC role
param keyVaultSecretUsers array
|
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
Right now we string match for the word We would recommend using |
Beta Was this translation helpful? Give feedback.
-
I think it is a little over sensitive, and should only be scoped to parameters of type "string" and maybe "objects", since those are the only types that can be annotated with '@secure()' Proposed idea for a fix here, #8420 |
Beta Was this translation helpful? Give feedback.
-
@afscrome I don't currently, but worth considering. Could you explain why you consider the following to be false positives? # An of secret names to copy from keyvault A to keyvault B
param secretNames array
# An array of principal ids to assign the "Key Vault Secret Users" RBAC role
param keyVaultSecretUsers array These parameter names certainly could indicate data that should not be made public, so I'm not sure these should be considered false positives. They may simply need to be silenced. Thanks. |
Beta Was this translation helpful? Give feedback.
I think it is a little over sensitive, and should only be scoped to parameters of type "string" and maybe "objects", since those are the only types that can be annotated with '@secure()'
Proposed idea for a fix here, #8420