Skip to content

Commit

Permalink
fix: stop assigning roles in CD (#90)
Browse files Browse the repository at this point in the history
  • Loading branch information
hund030 authored Jul 29, 2024
1 parent 7fb2b41 commit 81c955a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions infra/main.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ module storageRoleUser 'core/security/role.bicep' = if (!isContinuousDeployment)
}
}

module searchIndexContribRoleUser 'core/security/role.bicep' = {
module searchIndexContribRoleUser 'core/security/role.bicep' = if (!isContinuousDeployment) {
scope: resourceGroup
name: 'search-index-contrib-role-user'
params: {
Expand All @@ -236,7 +236,7 @@ module searchIndexContribRoleUser 'core/security/role.bicep' = {
}
}

module searchContribRoleIndexerUser 'core/security/role.bicep' = {
module searchContribRoleIndexerUser 'core/security/role.bicep' = if (!isContinuousDeployment) {
scope: resourceGroup
name: 'search-contrib-role-user'
params: {
Expand Down

0 comments on commit 81c955a

Please sign in to comment.