EC2インスタンスから自分自身のNameタグを取得(Python版)
こいつのpython版
import boto3
import requests
region = requests.get('http://169.254.169.254/latest/meta-data/local-hostname').text.split('.')[1]
instance_id = requests.get('http://169.254.169.254/latest/meta-data/instance-id').text
client = boto3.client('ec2', region_name=region)
for tag in client.describe_tags(Filters=[{ 'Name': 'resource-id', 'Values': [ instance_id ] }])['Tags']:
if tag['Key'] == 'Name':
print(tag['Value'])
Author And Source
この問題について(EC2インスタンスから自分自身のNameタグを取得(Python版)), 我々は、より多くの情報をここで見つけました https://qiita.com/toriumi01/items/fcb48e614afbb5cdef27著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .