@@ -4137,7 +4137,7 @@ def __report_cis_analyze_tenancy_data(self):
4137
4137
"description" : key ['description' ],
4138
4138
# "inactive_status": key['inactive_status'],
4139
4139
# "lifecycle_state": key['lifecycle_state'],
4140
- # "time_created": key['time_created'],
4140
+ "time_created" : key ['time_created' ],
4141
4141
# "time_expires": key['time_expires'],
4142
4142
# "token": key['token']
4143
4143
}
@@ -4148,7 +4148,7 @@ def __report_cis_analyze_tenancy_data(self):
4148
4148
# CIS Total 1.10 Adding - Keys to CIS Total
4149
4149
self .cis_foundations_benchmark_3_0 ['1.10' ]['Total' ].append (
4150
4150
key )
4151
- # CIS 1.11 Check - Old DB Password
4151
+ # CIS 1.11 Check - Old DB Password
4152
4152
#__iso_time_format1 = "%Y-%m-%dT%H:%M:%S.%fZ"
4153
4153
for user in self .__users :
4154
4154
if user ['database_passwords' ]:
@@ -4161,6 +4161,7 @@ def __report_cis_analyze_tenancy_data(self):
4161
4161
"user_id" : user ['id' ],
4162
4162
"id" : key ['ocid' ],
4163
4163
"description" : key ['description' ],
4164
+ "time_created" : key ['time_created' ],
4164
4165
# "expires-on": key['expires_on']
4165
4166
}
4166
4167
@@ -5355,7 +5356,7 @@ def __report_generate_cis_report(self, level):
5355
5356
summary_file_name = self .__print_to_json_file ("cis" , "summary_report" , summary_report )
5356
5357
summary_files .append (summary_file_name )
5357
5358
5358
- summary_file_name = self .__report_generate_html_summary_report ("cis" , "html_summary_report " , summary_report )
5359
+ summary_file_name = self .__report_generate_html_summary_report ("cis" , "summary_report " , summary_report )
5359
5360
summary_files .append (summary_file_name )
5360
5361
5361
5362
if OUTPUT_DIAGRAMS :
@@ -6425,8 +6426,7 @@ def execute_report():
6425
6426
for r , row in enumerate (reader ):
6426
6427
for c , col in enumerate (row ):
6427
6428
# Skipping the deep link due to formating errors in xlsx
6428
- if "=HYPERLINK" not in col :
6429
- worksheet .write (r , c , col )
6429
+ worksheet .write (r , c , col )
6430
6430
worksheet .autofilter (0 , 0 , r - 1 , c - 1 )
6431
6431
worksheet .autofit ()
6432
6432
0 commit comments