boto3 how to retrieve the elastic ip from an instance
问题 I need to do the following: I have some instances that contain a certain tag, I need to loop through those instances and for each instance which contains that certain tag, if that instance has an elastic ip attached, I need to tag that elastic ip with that same tag. My code is the following: import boto3 import json region_list = ['us-east-1'] session = boto3.Session(profile_name='default') for region in region_list: ec2 = session.resource('ec2',region) client = boto3.client('ec2',region) #