agent: |
cbhL3PgpnoNlPcfgA6RNCheck each S3 bucket to determine if Server Access Logging is enabled.
Check each S3 bucket to determine if Server Access Logging is enabled.
There was a problem that the LLM was not able to address. Please rephrase your prompt and try again.
The script checks each S3 bucket to determine if Server Access Logging is enabled and outputs the status.
inputs
outputs
import boto3
import json
# Retrieve AWS credentials
aws_access_key_id = getEnvVar('AWS_ACCESS_KEY_ID')
aws_secret_access_key = getEnvVar('AWS_SECRET_ACCESS_KEY')
# Initialize a session using Boto3
session = boto3.Session(
aws_access_key_id=aws_access_key_id,
aws_secret_access_key=aws_secret_access_key
)
# Create an S3 client
s3_client = session.client('s3')
logging_status = {}
# Check each bucket for server access logging
for bucket in buckets_list:
try:
response = s3_client.get_bucket_logging(Bucket=bucket)
if 'LoggingEnabled' in response:
logging_status[bucket] = 'Enabled'
else:
logging_status[bucket] = 'Not Enabled'
except Exception as e:
logging_status[bucket] = f'Error: {str(e)}'
# Print the logging status
print("Logging Status:", json.dumps(logging_status, indent=4, default=str))
copied