-
-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathtest_dynamic_params.py
85 lines (71 loc) · 2.04 KB
/
test_dynamic_params.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
76
77
78
79
80
81
82
83
84
85
import re
from pprint import pprint
dynamic_params = {
'key': 'dependency.a3bfbbf.outputs.security_group_id',
'egress_with_source_security_group_id': [],
'ingress_with_source_security_group_id': [
{
'description': 'All TCP from sg2',
'from_port': '0',
'protocol': 6,
'source_security_group_id': 'dependency.a3bfbb.outputs.security_group_id',
'to_port': '65535'
},
{
'description': 'All TCP from sg3',
'from_port': '0',
'protocol': 6,
'source_security_group_id': '[dependency.a3bfbb.outputs.security_group_id] + dependency.abcdef.outputs.security_group_id',
'to_port': '65535'
}
]
}
dirs = {
"a3bfbb": "sg-111",
"abcdef": "sg-999"
}
def recursive_replace_dependency(input):
# check whether it's a dict, list, tuple, or scalar
if isinstance(input, dict):
items = input.items()
elif isinstance(input, (list, tuple)):
items = enumerate(input)
else:
# just a value, replace and return
found = re.findall(r"dependency\.([^.]+)", str(input))
for f in found:
input = re.sub(f, dirs.get(f, f), input)
return input
# now call itself for every value and replace in the input
for key, value in items:
input[key] = recursive_replace_dependency(value)
return input
pprint(dynamic_params)
if dynamic_params:
for k, v in dynamic_params.items():
dynamic_params[k] = recursive_replace_dependency(v)
pprint(dynamic_params[k])
pprint("FINAL = ")
pprint(dynamic_params)
pprint("")
pprint("")
pprint("")
####
#
# import hcl
# import json
#
# # hcl_json = hcl.loads(json.dumps(dynamic_params))
#
# # hcl_json_input = "{\"key\": \"var.value\"}"
# hcl_json_input = "{\"key\": { \"key1\" : \"value\" } }"
# hcl_json = hcl.loads(hcl_json_input)
#
# # val2 = hcl.dumps(value)
#
# # with open('file.hcl', 'r') as fp:
# # obj = hcl.load(fp)
#
# result = json.dumps(hcl_json)
# print(hcl_json)
# print(result)