Skip to content

Commit

Permalink
Rename em all
Browse files Browse the repository at this point in the history
  • Loading branch information
Eduard Keilholz committed Jan 16, 2024
1 parent a51c201 commit 7967cd5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 43 deletions.
4 changes: 2 additions & 2 deletions infrastructure/main.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ param appBuildersGroup string

param location string = deployment().location

var defaultResourceName = 'wam-${runtimeEnvironment}-int'
var resourceGroupName = '${defaultResourceName}-rg'
var defaultResourceName = 'wam-int-${runtimeEnvironment}'
var resourceGroupName = '${defaultResourceName}-rg' a

resource resourceGroup 'Microsoft.Resources/resourceGroups@2018-05-01' = {
name: resourceGroupName
Expand Down
41 changes: 0 additions & 41 deletions infrastructure/resources.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -115,44 +115,3 @@ module appConfigurationDataReaderRoleAssignment 'roleAssignment.bicep' = {
principalType: 'Group'
}
}

// resource storageTableDataContributorRoleDefinition 'Microsoft.Authorization/roleDefinitions@2022-05-01-preview' existing = {
// name: '0a9a7e1f-b9d0-4cc4-a60d-0319b160aaa3'
// }
// module storageTableDataContributorRoleAssignment 'roleAssignment.bicep' = {
// name: 'storageTableDataContributorRoleAssignment'
// params: {
// principalId: webApp.identity.principalId
// roleDefinitionId: storageTableDataContributorRoleDefinition.id
// principalType: 'ServicePrincipal'
// }
// }
// module storageTableDataContributorRoleAssignmentToEduard 'roleAssignment.bicep' = {
// name: 'storageTableDataContributorRoleAssignmentToEduard'
// params: {
// principalId: appBuildersGroup
// roleDefinitionId: storageTableDataContributorRoleDefinition.id
// principalType: 'Group'
// }
// }

// resource webPubSubServiceOwnerRoleDefinition 'Microsoft.Authorization/roleDefinitions@2022-05-01-preview' existing = {
// name: '12cf5a90-567b-43ae-8102-96cf46c7d9b4'
// }

// module webPubSubContributorRoleAssignment 'roleAssignment.bicep' = {
// name: 'webPubSubContributorRoleAssignment'
// params: {
// principalId: webApp.identity.principalId
// roleDefinitionId: webPubSubServiceOwnerRoleDefinition.id
// principalType: 'ServicePrincipal'
// }
// }
// module webPubSubContributorRoleAssignmentToEduard 'roleAssignment.bicep' = {
// name: 'webPubSubContributorRoleAssignmentToEduard'
// params: {
// principalId: appBuildersGroup
// roleDefinitionId: webPubSubServiceOwnerRoleDefinition.id
// principalType: 'Group'
// }
// }

0 comments on commit 7967cd5

Please sign in to comment.