-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathDeploy-Roleassignment.ps1
76 lines (59 loc) · 2.17 KB
/
Deploy-Roleassignment.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# Deploy to a Management group
$Parameters = @{
TemplateFile = '.\rbac-mg.bicep'
ManagementGroupId = 'ExampleGroup'
Location = 'WestEurope'
PrincipalType = 'User'
PrincipalId = (Get-AzADUser -UserPrincipalName [email protected]).id
RoleDefinitionId = (Get-AzRoleDefinition -Name 'Reader').id
}
New-AzManagementGroupDeployment @parameters -Verbose
#Deploy to a subscription
$Parameters = @{
TemplateFile = 'rbac-sub.bicep'
Location = 'WestEurope'
PrincipalType = 'User'
PrincipalId = (Get-AzADUser -UserPrincipalName [email protected]).id
RoleDefinitionId = (Get-AzRoleDefinition -Name 'Reader').id
}
New-AzDeployment @parameters -Verbose
#Deploy to a resource group
$Parameters = @{
TemplateFile = 'rbac-rg.bicep'
ResourceGroupName = 'example'
PrincipalType = 'User'
PrincipalId = (Get-AzADUser -UserPrincipalName [email protected]).id
RoleDefinitionId = (Get-AzRoleDefinition -Name 'Reader').id
}
New-AzResourceGroupDeployment @parameters -Verbose
#Deploy to a resource
$Parameters = @{
TemplateFile = 'rbac-res.bicep'
ResourceGroupName = 'example'
PrincipalType = 'User'
PrincipalId = (Get-AzADUser -UserPrincipalName [email protected]).id
RoleDefinitionId = (Get-AzRoleDefinition -Name 'Reader').id
}
New-AzResourceGroupDeployment @parameters -Verbose
# Deploy a module
$Parameters = @{
TemplateFile = '.\07 - RBACModule.bicep'
ResourceGroupName = 'example'
rbacprincipalId = (Get-AzADUser -UserPrincipalName [email protected]).id
rbacRoleDefinitionId = (Get-AzRoleDefinition -Name 'Contributor').id
}
New-AzResourceGroupDeployment @parameters -Verbose
# Deploy with the role assignment in an array
$RoleAssignments = @(
@{
roleDefinitionId = '00000000-0000-0000-0000-000000000000'
principalId = '00000000-0000-0000-0000-000000000000'
principalType = 'User'
}
)
$Parameters = @{
TemplateFile = '.\06 - storageAccount.bicep'
ResourceGroupName = 'example'
RoleAssignments = $RoleAssignments
}
New-AzResourceGroupDeployment @parameters -Verbose