2026.9.9.2

Overview

Name reader
Tag 2026.9.9.2
FullName br:bicepacrdevwcom.azurecr.io/bicep/modules/appconfiguration/rbac/reader:2026.9.9.2
Last updated 2026-09-09 12:43:43:+00:00
Created 2026-09-09 12:43:43:+00:00
Digest sha256:ebe857a76703187864d7b45f5df6428540c9c9b291131cb14eb86f50ca23ba5a

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

Name Type Description

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.9.9.2' = {
    name: 'reader${env}${version}'
    params: {
      configStoreName: configStoreName
      system: system
    }
}