-
Notifications
You must be signed in to change notification settings - Fork 7
/
board.json
211 lines (211 loc) · 4.61 KB
/
board.json
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
{
"widgets": [
{
"id": "fcc10441-31b7-418e-bc52-6865caf0ad0b",
"title": "Okta User by Status",
"type": "pie",
"config": {
"queries": [
{
"name": "query1",
"query": "Find okta_user as o \nreturn o.status as name, count(o) as value"
}
]
}
},
{
"id": "fd9d71bc-5909-4ab2-9300-f1f04f4ad328",
"title": "Okta Users Inactive For More Than 90 Days",
"type": "number",
"config": {
"queries": [
{
"name": "query1",
"query": "find okta_user with lastLoginOn < date.now-90 days and status != \"DEPROVISIONED\" as u\nreturn\ncount(u) as value"
}
]
}
},
{
"id": "1daf1741-2ac8-438d-be66-06ba830c1204",
"title": "Okta Users Inactive for more than 90 days",
"type": "table",
"config": {
"queries": [
{
"name": "query1",
"query": "find okta_user with lastLoginOn < date.now-90 days and status != \"DEPROVISIONED\" as o\n\nRETURN o.displayName as email, o.name as name, o.status as status"
}
]
}
},
{
"id": "2524b1a7-313e-4515-a5df-72f54b7b6482",
"title": "OKTA DEPROVISIONED OR Inactive Users with Access to User account",
"type": "number",
"config": {
"queries": [
{
"name": "query1",
"query": "find okta_user with ( lastLoginOn < date.now-90 days OR status=\"DEPROVISIONED\") and lastName!~=\"Agent\" as o that is Person that is User with active=true as u \nRETURN count(o) as value"
}
],
"settings": {
"number": {
"error": {
"limitCondition": "greaterThan",
"val1": 1
}
}
}
}
},
{
"id": "af134176-1956-4f5e-a1c0-dac66aededeb",
"title": "OKTA DEPROVISIONED OR Inactive Users with Access to User account",
"type": "table",
"config": {
"queries": [
{
"name": "query1",
"query": "find okta_user with ( lastLoginOn < date.now-90 days OR status=\"DEPROVISIONED\") and lastName!~=\"Agent\" as o that is Person that is User with active=true as u\nRETURN o.name as Name, u._type as Account, u.username as Username"
}
]
}
},
{
"id": "01d9dc2c-5661-460a-9079-2bafcb79361c",
"title": "New Users Access Requirements",
"type": "status",
"config": {
"queries": [
{
"name": "query1",
"query": "Find okta_user with createdOn > date.now - 1 month as o (That (HAS|ASSIGNED) (mfa_device) as p )? \nreturn o.displayName as id, \no.organization as \"OrgAssigned\",\no.employeeNumber as EmployeeNumber,\no.jobTitle as \"JobTitle\",\no.manager as \"Manager\",\np.displayName as \"MFADevice\""
},
{
"name": "query2",
"query": "Find okta_user with createdOn > date.now - 1 month as o (That (HAS|ASSIGNED) UserGroup with displayName~=\"Everyone\" as p )? \nreturn o.displayName as id, \np.displayName as \"EveryoneGroup\""
}
]
}
}
],
"layouts": {
"sm": [],
"xs": [],
"lg": [
{
"static": false,
"w": 12,
"moved": false,
"h": 2,
"x": 0,
"y": 0,
"i": "fcc10441-31b7-418e-bc52-6865caf0ad0b"
},
{
"static": false,
"w": 3,
"moved": false,
"h": 2,
"x": 0,
"y": 2,
"i": "fd9d71bc-5909-4ab2-9300-f1f04f4ad328"
},
{
"static": false,
"w": 9,
"moved": false,
"h": 2,
"x": 3,
"y": 2,
"i": "1daf1741-2ac8-438d-be66-06ba830c1204"
},
{
"static": false,
"w": 3,
"moved": false,
"h": 2,
"x": 0,
"y": 4,
"i": "2524b1a7-313e-4515-a5df-72f54b7b6482"
},
{
"static": false,
"w": 9,
"moved": false,
"h": 2,
"x": 3,
"y": 4,
"i": "af134176-1956-4f5e-a1c0-dac66aededeb"
},
{
"static": false,
"w": 12,
"moved": false,
"h": 3,
"x": 0,
"y": 6,
"i": "01d9dc2c-5661-460a-9079-2bafcb79361c"
}
],
"xl": [],
"md": [
{
"static": false,
"w": 6,
"moved": false,
"h": 2,
"x": 0,
"y": 0,
"i": "fcc10441-31b7-418e-bc52-6865caf0ad0b"
},
{
"static": false,
"w": 6,
"moved": false,
"h": 2,
"x": 0,
"y": 2,
"i": "fd9d71bc-5909-4ab2-9300-f1f04f4ad328"
},
{
"static": false,
"w": 6,
"moved": false,
"h": 2,
"x": 0,
"y": 4,
"i": "1daf1741-2ac8-438d-be66-06ba830c1204"
},
{
"static": false,
"w": 6,
"moved": false,
"h": 2,
"x": 0,
"y": 6,
"i": "2524b1a7-313e-4515-a5df-72f54b7b6482"
},
{
"static": false,
"w": 6,
"moved": false,
"h": 2,
"x": 0,
"y": 8,
"i": "af134176-1956-4f5e-a1c0-dac66aededeb"
},
{
"static": false,
"w": 6,
"moved": false,
"h": 2,
"x": 0,
"y": 10,
"i": "01d9dc2c-5661-460a-9079-2bafcb79361c"
}
]
}
}