Overview
|
|
| Name |
reader |
| Tag |
2026.8.25.2 |
| FullName |
br:bicepacrdevwcom.azurecr.io/bicep/modules/appconfiguration/rbac/reader:2026.8.25.2 |
| Last updated |
2026-08-25 09:41:56:+00:00 |
| Created |
2026-08-25 09:41:56:+00:00 |
| Digest |
sha256:c6bcaf406c22460fa567013c2f378c8a9018819283a6bd54152a9d44b83f2cdb |
Parameters
| Name |
Type |
Required |
Description |
configStoreName |
string |
Yes |
Name of the App Configuration store where the reader role will be assigned |
system |
string |
Yes |
System identifier used for role assignment naming |
managedIdentityIds |
array |
No
[ ] |
Array of managed identity IDs that will be granted reader access to the App Configuration store |
Outputs
Example
@description('The target environment.')
param env string
@description('The deployment version.')
param version string = '1.0.0.0'
@description('Name of the App Configuration store where the reader role will be assigned')
param configStoreName string
@description('System identifier used for role assignment naming')
param system string
module reader 'br:bicepacrdevwcom.azurecr.io/bicep/modules/appconfiguration/rbac/reader:2026.8.25.2' = {
name: 'reader${env}${version}'
params: {
configStoreName: configStoreName
system: system
}
}