-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathlighthouse.bicep
225 lines (203 loc) · 6.25 KB
/
lighthouse.bicep
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
/*
SUMMARY: This Bicep file deploys a Logic App that will be used to register the Lighthouse Managed Services Provider (MSP) offer in a tenant.
AUTHOR/S: Cloud for Sovereignty
*/
targetScope = 'managementGroup'
@description('The tenant ID for Lighthouse.')
param parLighthouseManagementTenantId string
@description('The management group id')
@minLength(2)
@maxLength(10)
param parManagementGroupId string
@minLength(1)
@maxLength(20)
@description('The Lighthouse MSP offer name.')
param parLighthouseOfferName string
@description('The Lighthouse MSP offer description.')
param parLighthouseOfferDescription string
@description('The principal ID for authorizations.')
param parPrincipalId string
@description('The principal ID display name for authorizations.')
param parPrincipalIdDisplayName string
@description('Timestamp with format yyyyMMddTHHmmssZ. Default value set to Execution Timestamp to avoid deployment contention.')
param parTimestamp string = utcNow()
@description('Subscription where logic app will be deployed')
param parDeploymentSubscriptionId string
@description('Name of Logic App')
param parLogicAppName string
@description('Role that will be assigned to service provider ')
param parRoleDefinitionId string
@description('Name of the User Assigned Managed Identity used in some RBAC scenarios (e.g., for the Disk Encryption Set).')
param parManagedIdentityName string = '${parManagementGroupId}-Lighthouse-id'
@description('Deployment location')
@allowed([
'asia'
'asiapacific'
'australia'
'australiacentral'
'australiacentral2'
'australiaeast'
'australiasoutheast'
'brazil'
'brazilsouth'
'brazilsoutheast'
'canada'
'canadacentral'
'canadaeast'
'centralindia'
'centralus'
'centraluseuap'
'centralusstage'
'eastasia'
'eastasiastage'
'eastus'
'eastus2'
'eastus2euap'
'eastus2stage'
'eastusstage'
'eastusstg'
'europe'
'france'
'francecentral'
'francesouth'
'germany'
'germanynorth'
'germanywestcentral'
'global'
'india'
'japan'
'japaneast'
'japanwest'
'jioindiacentral'
'jioindiawest'
'korea'
'koreacentral'
'koreasouth'
'northcentralus'
'northcentralusstage'
'northeurope'
'norway'
'norwayeast'
'norwaywest'
'qatarcentral'
'singapore'
'southafrica'
'southafricanorth'
'southafricawest'
'southcentralus'
'southcentralusstage'
'southcentralusstg'
'southeastasia'
'southeastasiastage'
'southindia'
'swedencentral'
'switzerland'
'switzerlandnorth'
'switzerlandwest'
'uae'
'uaecentral'
'uaenorth'
'uk'
'uksouth'
'ukwest'
'unitedstates'
'unitedstateseuap'
'westcentralus'
'westeurope'
'westindia'
'westus'
'westus2'
'westus2stage'
'westus3'
'westusstage'
])
param parLocation string
@description('Name of resource group')
var varResourceGroupName = '${parManagementGroupId}-rg-lighthouse-${parLocation}'
// module to create lighthouse resource group
module modLighthouseResourceGroup '../../../common/resourceGroup/resourceGroup.bicep' = {
name: take('${parManagementGroupId}-Lighthouse-rg-${parLocation}-${parTimestamp}', 64)
scope: subscription(parDeploymentSubscriptionId)
params: {
parLocation: parLocation
parResourceGroupName: varResourceGroupName
parTelemetryOptOut: true
}
}
//create managed identity
module modManagedIdentity '../../../common/Microsoft.ManagedIdentity/userAssignedIdentities/deploy.bicep' = {
name: 'LogicApp-Managed-Identity-${parTimestamp}'
scope: resourceGroup(parDeploymentSubscriptionId,varResourceGroupName)
dependsOn:[
modLighthouseResourceGroup
]
params: {
parLocation: parLocation
parName: parManagedIdentityName
}
}
//Create Logic app in lighthouse resource group
module modLighthouseLogicApp 'logicApp.bicep' = {
scope:resourceGroup(parDeploymentSubscriptionId,varResourceGroupName)
dependsOn:[
modLighthouseResourceGroup
]
name: take('${parManagementGroupId}-LogicApp-${parLocation}-${parTimestamp}', 64)
params:{
parLogicAppName:parLogicAppName
parLocation:parLocation
parManagedIdentityId: modManagedIdentity.outputs.outResourceId
parManagedIdentityName: parManagedIdentityName
}
}
// Module - deploy logicapp role definition
module modLogicAppRoleDefinition '../../../common/customRoles/customRoleDefinition.bicep' = {
scope: managementGroup(parManagementGroupId)
name: take('${parManagementGroupId}-LogicApp-RoleDefintion-${parLocation}-${parTimestamp}', 64)
params:{
roleName:'${parManagementGroupId} RP Register Role ${parLocation}'
actions:[
'Microsoft.ManagedServices/register/action'
]
roleDescription:'To register managed services resource provider'
}
}
// Module - deploy logicapp role assignment
module modRoleAssignmentManagementGroup '../../../common/customRoles/customRoleAssignment.bicep' = {
name: take('${parManagementGroupId}-deploy-Lighthouse-Role-Assignment-${parTimestamp}', 64)
scope: managementGroup(parManagementGroupId)
params: {
parRoleDefinitionId: modLogicAppRoleDefinition.outputs.outRoleDefinitionId
parPrincipalId:modManagedIdentity.outputs.outPrincipalId
parPrincipalType: 'ServicePrincipal'
}
dependsOn:[
modLogicAppRoleDefinition
modLighthouseLogicApp
]
}
// Module - create lighthouse custom policy definition and assignment
module modLighthousePolicy 'policy.bicep' = {
scope: managementGroup(parManagementGroupId)
name: take('${parManagementGroupId}-Lighthouse-policy-${parLocation}-${parTimestamp}', 64)
params: {
parManagementGroupId:parManagementGroupId
parManagedByName:parLighthouseOfferName
parManagedByDescription:parLighthouseOfferDescription
parManagedByTenantId:parLighthouseManagementTenantId
parManagedByAuthorizations:[
{
principalId: parPrincipalId
principalIdDisplayName: parPrincipalIdDisplayName
roleDefinitionId: parRoleDefinitionId
}
]
parLocation:parLocation
}
}
output outPolicyDefinitionId string = modLighthousePolicy.outputs.outPolicyDefinitionId
output outPolicyAssignmentId string = modLighthousePolicy.outputs.outPolicyAssignmentId
output outLogicAppIdentityId string = modManagedIdentity.outputs.outPrincipalId
output outLighthouseResourceGroupId string = modLighthouseResourceGroup.outputs.outResourceGroupId