agent: |
QjOut66tkaeJjkuNLPMuCheck if the root user access key exists in the AWS account
Check if the root user access key exists in the AWS account
There was a problem that the LLM was not able to address. Please rephrase your prompt and try again.
Checks if the AWS account is compliant based on the existence of root user access keys using account summary.
inputs
outputs
import boto3
# Create a session using the AWS credentials
session = boto3.Session(
aws_access_key_id=getEnvVar('AWS_ACCESS_KEY_ID'),
aws_secret_access_key=getEnvVar('AWS_SECRET_ACCESS_KEY')
)
# Create an IAM client
iam_client = session.client('iam')
# Get the account summary to check if root access keys exist
response = iam_client.get_account_summary()
# Check the number of root access keys
root_access_keys_count = response['SummaryMap'].get('AccountAccessKeysPresent', 0)
# Determine compliance status
if root_access_keys_count == 0:
compliance_status = 'COMPLIANT'
else:
compliance_status = 'NON_COMPLIANT'
# Print the compliance status
print(f"compliance_status: {compliance_status}")
copied