agent: |
Pq0yQXkv0YpakwV0kEE4Tabulate the results of the compliance check, indicating which keys are compliant and which are non-compliant.
Tabulate the results of the compliance check, indicating which keys are compliant and which are non-compliant.
There was a problem that the LLM was not able to address. Please rephrase your prompt and try again.
Tabulates the compliance check results for IAM access keys, indicating non-compliant keys.
inputs
outputs
table = context.newtable()
table.num_rows = len(non_compliant_keys) + 1 # Including header row
table.num_cols = 4
table.title = "IAM Access Key Compliance Check"
table.has_header_row = True
# Set header row
headers = ["UserName", "AccessKeyId", "LastRotationDate", "Status"]
for col_index, header in enumerate(headers):
table.setval(0, col_index, header)
# Populate table with non-compliant keys
for row_index, key in enumerate(non_compliant_keys, start=1):
table.setval(row_index, 0, key['UserName'])
table.setval(row_index, 1, key['AccessKeyId'])
table.setval(row_index, 2, key['LastRotationDate'])
table.setval(row_index, 3, key['Status'])
print("Compliance check results have been tabulated successfully.")
copied