agent: |
J0QXhZO45jad9S3ZGcfJTabulate the compliance results of the IAM policies.
Tabulate the compliance results of the IAM policies.
There was a problem that the LLM was not able to address. Please rephrase your prompt and try again.
The script tabulates the compliance results of IAM policies.
inputs
outputs
import json
# Compliance results from previous task
compliance_results = {
"AmazonEKS_EBS_CSI_Driver_Policy": "COMPLIANT",
"dev-ecs-execution-policy-4698": "COMPLIANT",
"AmazonSageMakerExecutionRoleForBedrockMarketplace_A5PKCFPHJ3Spolicy": "COMPLIANT",
"eks-dev-396-alb-ingress": "COMPLIANT",
"ci-ecs-execution-policy": "COMPLIANT",
"eks-policy-prod-1525": "COMPLIANT",
"akitra-reqd-permissions-part1": "COMPLIANT",
"AllowAssumeRole-AWSServiceRoleForECS": "COMPLIANT",
"khai_test_ssm_exec": "COMPLIANT",
"eks-dev-396-cluster-ClusterEncryption20230825100453184500000014": "COMPLIANT",
"AWSLambdaBasicExecutionRole-6fb2b237-cebe-4b0c-907a-18689d2a8c21": "COMPLIANT",
"cluster-autoscaler-irsa-cluster-autoscaler": "COMPLIANT",
"ecr-full-access": "COMPLIANT",
"dev-controller-task-policy-4698": "COMPLIANT",
"AmazonSageMakerExecutionRoleForBedrockMarketplace_5QBGRVH1WPYpolicy": "COMPLIANT",
"AWSLambdaBasicExecutionRole-897ccca8-f1f7-4d45-bcae-509e5e0df4bf": "COMPLIANT",
"ES-Policy": "COMPLIANT",
"EC2StopInstancePolicy": "COMPLIANT",
"CodeBuildBasePolicy-ci-codebuild-jenkins-codebuild-us-east-2": "COMPLIANT",
"ecr-readonly": "COMPLIANT",
"eks-prod-341-alb-ingress": "COMPLIANT",
"BedrockInvokeModel": "COMPLIANT",
"eks-dev-396-efs-csi-driver": "COMPLIANT",
"eks-policy-dev-4698": "COMPLIANT",
"prod-ecs-execution-policy-1525": "COMPLIANT",
"TestAWSFullPolicy": "COMPLIANT",
"aws-dag-sandbox-policy": "COMPLIANT",
"AWSLambdaBasicExecutionRole-eb8ab677-e621-4773-9897-5bcc7e016166": "COMPLIANT",
"eks-prod-341-efs-csi-driver": "COMPLIANT",
"AmazonEKSReadOnlyAccess": "COMPLIANT",
"eks-prod-341-cluster-ClusterEncryption2023091822371825660000001e": "COMPLIANT",
"prod-controller-task-policy-1525": "COMPLIANT",
"ci-controller-task-policy": "COMPLIANT",
"ci-codebuild-jenkins-codebuild": "COMPLIANT",
"all_eks_policy": "COMPLIANT",
"AWSLambdaBasicExecutionRole-386a38d6-24d9-4bb3-9005-c48f010caa8f": "COMPLIANT",
"InvokeModelPolicy": "COMPLIANT"
}
# Create a table to tabulate the compliance results
table = context.newtable()
table.num_rows = len(compliance_results) + 1 # +1 for header
table.num_cols = 2
# Set table title and header
table.title = "IAM Policy Compliance Results"
table.has_header_row = True
table.setval(0, 0, "Policy Name")
table.setval(0, 1, "Compliance Status")
# Populate the table with compliance results
row = 1
for policy_name, status in compliance_results.items():
table.setval(row, 0, policy_name)
table.setval(row, 1, status)
row += 1
print("Compliance results have been tabulated successfully.")
copied