Вы можете передать регион ресурсу при его создании
ec2 = boto3.resource('ec2', region_name='us-east-2')
Я бы порекомендовал обернуть весь ваш код в функцию, которая принимает регион в качестве аргумента, а затем перебрать список регионоввы хотите оперировать.
import boto3
import logging
#setup simple logging for INFO
logger = logging.getLogger()
logger.setLevel(logging.INFO)
def shutdown_instances(region):
#define the connection
ec2 = boto3.resource('ec2', region=region)
# Use the filter() method of the instances collection to retrieve
# all running EC2 instances.
filters = [{
'Name': 'tag:AutoOff_uat',
'Values': ['True']
},
{
'Name': 'instance-state-name',
'Values': ['running']
}
]
#filter the instances
instances = ec2.instances.filter(Filters=filters)
#locate all running instances
RunningInstances = [instance.id for instance in instances]
#print the instances for logging purposes
#print RunningInstances
#make sure there are actually instances to shut down.
def lambda_handler(event, context):
for region in ['us-east-1', 'us-east-2']:
shutdown_instances(region)