forked from srecinto/okta-partner-registration-workflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_init_config.py
75 lines (75 loc) · 2.1 KB
/
test_init_config.py
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
partner_portal = {
"groups": [
{
"profile": {
"name": "dlr_James Davis Toyota",
"zip": "60606"
}
},
{
"profile": {
"name": "dlr_James Davis Toyota - Admins"
}
},
{
"profile": {
"name": "dlr_Jeremy Smith Chevy",
"zip": "60626"
}
},
{
"profile": {
"name": "dlr_Jeremy Smith Chevy - Admins"
}
}
],
"admin_users": [
{
"profile": {
"firstName": "James Davis Toyota",
"lastName": "Admin",
"email": "[email protected]",
"login": "[email protected]"
},
"credentials": {
"password": {"value": "X!$passw0rd1"}
}
},
{
"profile": {
"firstName": "Jeremy Smith Chevy",
"lastName": "Admin",
"email": "[email protected]",
"login": "[email protected]"
},
"credentials": {
"password": {"value": "X!$passw0rd1"}
}
},
{
"profile": {
"firstName": "Jeremy Smith Chevy 2",
"lastName": "Admin",
"email": "[email protected]",
"login": "[email protected]"
},
"credentials": {
"password": {"value": "X!$passw0rd1"}
}
}
],
"admin_group_assignments": [
{
"login": "[email protected]",
"group": "dlr_James Davis Toyota - Admins"
},
{
"login": "[email protected]",
"group": "dlr_Jeremy Smith Chevy - Admins"
},
{
"login": "[email protected]",
"group": "dlr_Jeremy Smith Chevy - Admins"
}
]
}