Skip to content

Commit

Permalink
chore: change role id
Browse files Browse the repository at this point in the history
  • Loading branch information
nlykkei committed Jul 12, 2024
1 parent 52a5748 commit 490f0c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Deploy Todo App (E2E)

concurrency:
group: todo-all-deploy
cancel-in-progress: true
cancel-in-progress: false

on:
push:
Expand Down
11 changes: 1 addition & 10 deletions infra/main.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,7 @@ resource keyVault 'Microsoft.KeyVault/vaults@2021-06-01-preview' = {
}
}

var keyVaultSecretsUserRoleId = subscriptionResourceId(
// resourceId(...)
var keyVaultSecretsUserRoleId = resourceId(
'Microsoft.Authorization/roleDefinitions',
'4633458b-17de-408a-b874-0445c86b69e6'
)
Expand Down Expand Up @@ -152,11 +151,3 @@ resource storageAccount 'Microsoft.Storage/storageAccounts@2022-09-01' = {

output appServiceAppName string = appServiceApp.name
output appServiceAppHostName string = appServiceApp.properties.defaultHostName
output roleDefinitionIdSubscription string = subscriptionResourceId(
'Microsoft.Authorization/roleDefinitions',
'4633458b-17de-408a-b874-0445c86b69e6'
)
output roleDefinitionIdResourceGroup string = resourceId(
'Microsoft.Authorization/roleDefinitions',
'4633458b-17de-408a-b874-0445c86b69e6'
)

0 comments on commit 490f0c9

Please sign in to comment.