Skip to content

Commit 2b2446c

Browse files
committed
roleAssignment name updated to RBAC
1 parent c6584c6 commit 2b2446c

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/workload/devCenter.bicep

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ resource diagnosticSettings 'Microsoft.Insights/diagnosticSettings@2021-05-01-pr
106106
@description('Dev Center Identity Role Assignments')
107107
module roleAssignments '../identity/devCenterRoleAssignment.bicep' = [
108108
for role in config.identity.roleAssignments: {
109-
name: 'roleAssignment-${replace(role.name, ' ', '-')}'
109+
name: 'RBAC-${replace(role.name, ' ', '-')}'
110110
scope: subscription()
111111
params: {
112112
id: role.id

src/workload/project/project.bicep

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ resource project 'Microsoft.DevCenter/projects@2024-10-01-preview' = {
7979
@description('Dev Center Identity Role Assignments')
8080
module projectIdentityRoleAssignments '../../identity/devCenterRoleAssignment.bicep'= [
8181
for roleAssignment in identity.roleAssignments: {
82-
name: 'roleAssignment-${project.name}-${replace(roleAssignment.name, ' ', '-')}'
82+
name: 'RBAC-${project.name}-${replace(roleAssignment.name, ' ', '-')}'
8383
scope: subscription()
8484
params: {
8585
id: roleAssignment.id

0 commit comments

Comments
 (0)