agent: |
wtiH8YYirUhwTIhloq2FList all Amazon VPCs.
List all Amazon VPCs.
There was a problem that the LLM was not able to address. Please rephrase your prompt and try again.
The script lists all VPCs in the us-east-2 region using boto3 with credentials.
inputs
outputs
import boto3
import json
# Initialize boto3 client for EC2 in the us-east-2 region
client = boto3.client(
'ec2',
region_name='us-east-2',
aws_access_key_id=getEnvVar('AWS_ACCESS_KEY_ID'),
aws_secret_access_key=getEnvVar('AWS_SECRET_ACCESS_KEY')
)
# Retrieve all VPCs
vpcs = client.describe_vpcs()
vpc_list = [vpc['VpcId'] for vpc in vpcs.get('Vpcs', [])]
# Print the list of VPCs
print(json.dumps(vpc_list, indent=4))
copied