AWS에서 RUNNING PUBLIC Ip를 모두 추출해야하며 다음 코드를 사용하고 있습니다.
def gather_public_ip():
regions = ['us-west-2', 'eu-central-1', 'ap-southeast-1']
combined_list = [] ##This needs to be returned
for region in regions:
instance_information = [] # I assume this is a list, not dict
ip_dict = {}
client = boto3.client('ec2', aws_access_key_id=ACCESS_KEY, aws_secret_access_key=SECRET_KEY,
region_name=region, )
instance_dict = client.describe_instances().get('Reservations')
for reservation in instance_dict:
for instance in reservation['Instances']: # This is rather not obvious
if instance[unicode('State')][unicode('Name')] == 'running' and instance[unicode('PublicIpAddress')] != None:
ipaddress = instance[unicode('PublicIpAddress')]
tagValue = instance[unicode('Tags')][0][unicode('Value')] # 'Tags' is a list, took the first element, you might wanna switch this
zone = instance[unicode('Placement')][unicode('AvailabilityZone')]
info = ipaddress, tagValue, zone
instance_information.append(info)
combined_list.append(instance_information)
return combined_list
이것은 나를 위해 작동하지 않으며 오류를 제공합니다.
ipaddress = instance[unicode('PublicIpAddress')]
KeyError: u'PublicIpAddress'
그 이유는 PublicIpAddress
이 사전에 존재하지 않습니다 .. 누군가 나를 도와 줄 수 있습니까?
사용 get()
대신에 dict[key]
. get()
를 제기하지 않을 것이다 KeyError
. 다음은 설명 할 몇 가지 예입니다.
>>> test = {'xxx':123}
>>> test['xxx']
123
>>> test['yyy']
KeyError: 'yyy'
>>> test.get('yyy')
>>> test.get('yyy') is None
True
'PublicIpAddress'
다음과 같이 결석 여부를 확인할 수 있습니다 .
ipaddress = instance.get(u'PublicIpAddress')
if ipaddress is None:
# Do Something
편집하다
if instance[u'State'][u'Name'] == 'running' and instance.get(u'PublicIpAddress') is not None:
print instance.get(u'PublicIpAddress')
이 기사는 인터넷에서 수집됩니다. 재 인쇄 할 때 출처를 알려주십시오.
침해가 발생한 경우 연락 주시기 바랍니다[email protected] 삭제
몇 마디 만하겠습니다