미사용 Elastic IP 확인 및 릴리즈를 하는 방법
import boto3
client = boto3.client('ec2', region_name='ap-southeast-1')
addresses_dict = client.describe_addresses()
for eip_dict in addresses_dict['Addresses']:
if "NetworkInterfaceId" not in eip_dict:
print(eip_dict['PublicIp'])
client.release_address(AllocationId=eip_dict['AllocationId'])
'AWS' 카테고리의 다른 글
[awscli] 볼륨 출력 (0) | 2019.07.27 |
---|---|
[Python] credentials 파일 내에 profile 사용하는 방법 (0) | 2019.07.15 |
[Python] EC2 인스턴스의 Public IP 와 Ip Owner ID 확인 (0) | 2019.07.15 |
[awscli] EC2 인스턴스에서 사용하는 Public IP 출력 (0) | 2019.07.15 |
[awscli] 특정 EC2 인스턴스 정보 출력 (0) | 2019.07.15 |