forked from AzureAD/SCIMReferenceCode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOrchestrator_Parameters.json
More file actions
298 lines (298 loc) · 8.83 KB
/
Orchestrator_Parameters.json
File metadata and controls
298 lines (298 loc) · 8.83 KB
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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
{
"EnabledTests": {
"allowedValues": [
"All",
"UserTests",
"GroupTests",
"SCIMTests",
"Create_User_Test",
"Update_User_Test",
"Disable_User_Test",
"Delete_User_Test",
"User_Update_Manager_Test",
"Create_Group_Test",
"Update_Group_Test",
"Delete_Group_Test",
"Group_Update_Add_Member_Test",
"Group_Update_Remove_Member_Test",
"Schema_Discoverability_Test",
"SCIM_Null_Update_Test",
"Validate_Credentials_Test",
"SCIM_User_Create_Test",
"SCIM_Group_Create_Test",
"SCIM_User_Update_Test",
"SCIM_Group_Update_Test",
"SCIM_User_Delete_Test",
"SCIM_Group_Delete_Test",
"SCIM_Pagination_Test",
"POD_User_Test",
"POD_Group_Test",
"Restore_User_Test"
],
"type": "String",
"value": "SCIMTests"
},
"IsSoftDeleted": {
"metadata": {
"description": "If true, user will be disabled (soft delete). If false, user will be deleted (hard delete)."
},
"type": "Bool",
"value": true
},
"LogicAppVersion": {
"metadata": {
"description": "Version of the Logic App for tracking and deployment purposes"
},
"type": "String",
"value": "4.0"
},
"attributeTransforms": {
"metadata": {
"description": "Mapping of source attribute names to MS Graph property names. Key is source attribute, value is Graph property name."
},
"type": "Object",
"value": {
"IsSoftDeleted": "accountEnabled",
"facsimileTelephoneNumber": "faxNumber",
"mobile": "mobilePhone",
"objectId": "id",
"physicalDeliveryOfficeName": "officeLocation",
"telephoneNumber": "businessPhones"
}
},
"defaultGroupProperties": {
"metadata": {
"description": "Default group properties for Microsoft Graph Group creation"
},
"type": "Object",
"value": {
"allowExternalSenders": false,
"autoSubscribeNewMembers": false,
"classification": "",
"description": "Default test group for provisioning validation",
"groupTypes": [],
"hideFromAddressLists": false,
"hideFromOutlookClients": false,
"isAssignableToRole": false,
"isSubscribedByMail": false,
"mailEnabled": false,
"preferredDataLocation": "US",
"preferredLanguage": "en-US",
"securityEnabled": true,
"theme": "Blue",
"visibility": "Private"
}
},
"defaultUserProperties": {
"metadata": {
"description": "Combined default user properties for Microsoft Graph User creation"
},
"type": "Array",
"value": [
{
"businessPhones": [
"+1-555-0100"
],
"city": "Seattle",
"companyName": "Test Company",
"country": "US",
"department": "Research",
"displayName": "User1",
"employeeId": "E12345",
"employeeOrgData": {
"costCenter": "12345",
"division": "Engineering"
},
"employeeType": "Employee",
"faxNumber": "+1-555-0102",
"givenName": "User1 Given",
"hireDate": "2023-01-01T00:00:00Z",
"jobTitle": "Software Engineer",
"mailNickname": "testuser1",
"mobilePhone": "+1-555-0101",
"officeLocation": "Building A, Floor 3",
"otherMails": [
"testuser1@example.com"
],
"passwordProfile": {
"forceChangePasswordNextSignIn": true,
"password": "Pass@word123"
},
"postalCode": "98101",
"preferredLanguage": "en-US",
"state": "WA",
"streetAddress": "123 Test Street",
"surname": "User",
"usageLocation": "US",
"userType": "Member"
},
{
"businessPhones": [
"+1-555-2001"
],
"city": "Sanjose",
"companyName": "Test Company",
"country": "US",
"department": "Legal",
"displayName": "User2",
"employeeId": "E12345",
"employeeOrgData": {
"costCenter": "12345",
"division": "Legal"
},
"employeeType": "Employee",
"faxNumber": "+1-555-0102",
"givenName": "User2 Given",
"hireDate": "2023-01-01T00:00:00Z",
"jobTitle": "Software Dev Engineer",
"mailNickname": "testuser2",
"mobilePhone": "+1-555-0120",
"officeLocation": "Building A, Floor 3",
"otherMails": [
"testUser2@example.com"
],
"passwordProfile": {
"forceChangePasswordNextSignIn": true,
"password": "Pass@word123"
},
"postalCode": "98101",
"preferredLanguage": "en-US",
"state": "CA",
"streetAddress": "240 East 24th Ave",
"surname": "User",
"usageLocation": "US",
"userType": "Member"
},
{
"businessPhones": [
"+1-555-2001"
],
"city": "Delhi",
"companyName": "Test Company",
"country": "IN",
"department": "HumanResources",
"displayName": "User3",
"employeeId": "E12345",
"employeeOrgData": {
"costCenter": "67463",
"division": "Research"
},
"employeeType": "Employee",
"faxNumber": "+1-555-0102",
"givenName": "User3 Given",
"hireDate": "2023-01-01T00:00:00Z",
"jobTitle": "Research Scientist",
"mailNickname": "testuser3",
"mobilePhone": "+1-555-0120",
"officeLocation": "Building A, Floor 3",
"otherMails": [
"testUser3@example.com"
],
"passwordProfile": {
"forceChangePasswordNextSignIn": true,
"password": "Pass@word123"
},
"postalCode": "98101",
"preferredLanguage": "en-US",
"state": "DL",
"streetAddress": "240 East 24th Ave",
"surname": "User",
"usageLocation": "IN",
"userType": "Member"
}
]
},
"scimBearerToken": {
"metadata": {
"description": "Bearer token for SCIM API authentication"
},
"type": "String",
"value": "changeme-scim"
},
"scimClientId": {
"metadata": {
"description": "OAuth2 Client ID for SCIM API authentication (used with OAuth2ClientCredentialsGrant)"
},
"type": "String",
"value": "scimserver-client"
},
"scimClientSecret": {
"metadata": {
"description": "OAuth2 Client Secret for SCIM API authentication (used with OAuth2ClientCredentialsGrant)"
},
"type": "String",
"value": "changeme-oauth"
},
"scimContentType": {
"metadata": {
"description": "Content-Type header for SCIM API calls"
},
"type": "String",
"value": "application/scim+json"
},
"scimEndpoint": {
"type": "String",
"value": "https://scimserver2.yellowsmoke-af7a3fff.eastus.azurecontainerapps.io/scim/endpoints/f4c95b63-db4c-4f0a-91b0-78fdf88007be"
},
"scimOAuthScope": {
"metadata": {
"description": "OAuth2 scope for token acquisition (optional)"
},
"type": "String",
"value": ""
},
"scimTokenEndpoint": {
"metadata": {
"description": "OAuth2 Token Exchange URI for acquiring bearer token via client credentials grant"
},
"type": "String",
"value": "https://scimserver2.yellowsmoke-af7a3fff.eastus.azurecontainerapps.io/scim/oauth/token"
},
"servicePrincipalId": {
"type": "String",
"value": "3197053d-46d9-4a22-b843-6a9d98ec267e"
},
"testUserDomain": {
"type": "String",
"value": "proviamtest07.onmicrosoft.com"
},
"scimTargetUserValues": {
"type": "Array",
"value": [
{
"title": "Test Engineer",
"nickName": "testuser",
"name.givenName": "TestFirst",
"name.familyName": "TestLast",
"name.formatted": "TestFirst TestLast",
"displayName": "SCIM Test User",
"locale": "en-US",
"preferredLanguage": "en-US",
"timezone": "America/Los_Angeles",
"userType": "Employee",
"addresses[type eq \"work\"].streetAddress": "1 Microsoft Way",
"addresses[type eq \"work\"].locality": "Redmond",
"addresses[type eq \"work\"].region": "WA",
"addresses[type eq \"work\"].postalCode": "98052",
"addresses[type eq \"work\"].country": "US"
},
{
"title": "Senior Engineer",
"nickName": "updateduser",
"name.givenName": "UpdatedFirst",
"name.familyName": "UpdatedLast",
"name.formatted": "UpdatedFirst UpdatedLast",
"displayName": "Updated SCIM User",
"locale": "en-GB",
"preferredLanguage": "en-GB",
"timezone": "Europe/London",
"userType": "Contractor",
"addresses[type eq \"work\"].streetAddress": "456 Update Ave",
"addresses[type eq \"work\"].locality": "London",
"addresses[type eq \"work\"].region": "England",
"addresses[type eq \"work\"].postalCode": "EC1A 1BB",
"addresses[type eq \"work\"].country": "GB"
}
]
}
}