-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathlist_policies_v1.py
executable file
·66 lines (51 loc) · 1.29 KB
/
list_policies_v1.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
#!/usr/bin/env python
#
# List the current set of secure policies.
#
import getopt
import json
import sys
from sdcclient import SdSecureClientV1
def usage():
print(('usage: %s [-o|--order-only] <sysdig-token>' % sys.argv[0]))
print('-o|--order-only: Only display the list of policy ids in evaluation order. '
'Suitable for use by set_policy_order.py')
print('You can find your token at https://secure.sysdig.com/#/settings/user')
sys.exit(1)
try:
opts, args = getopt.getopt(sys.argv[1:], "o", ["order-only"])
except getopt.GetoptError:
usage()
order_only = False
for opt, arg in opts:
if opt in ("-o", "--order-only"):
order_only = True
#
# Parse arguments
#
if len(args) < 1:
usage()
sdc_token = args[0]
#
# Instantiate the SDC client
#
sdclient = SdSecureClientV1(sdc_token, 'https://secure.sysdig.com')
ok, res = sdclient.get_policy_priorities()
if not ok:
print(res)
sys.exit(1)
# Strip the surrounding json to only keep the list of policy ids
res = res['priorities']['policyIds']
if not order_only:
priorities = res
ok, res = sdclient.list_policies()
if ok:
res['policies'].sort(key=lambda p: priorities.index(p['id']))
#
# Return the result
#
if ok:
print((json.dumps(res, indent=2)))
else:
print(res)
sys.exit(1)