簡體   English   中英

AWS Boto3 - 如何使用多個過濾器並迭代標簽名稱/值?

[英]AWS Boto3 - How to use multiple filters and iterate over Tag names/values?

目前,我正在使用 boto3 對 AWS ec2 進行兩次調用,以獲取以標簽名稱org-production-*org-non-production-*開頭的子網 ID。 如何在 python 中結合這兩個功能,並且仍然能夠訪問 SubnetID 的 all_prod_subnets 和 all_non_prod_subnets? 我可能想避免重復代碼只調用一次 aws ec2,獲取所有子網並迭代它們並根據標簽名稱過濾響應。

def get_all_production_subnets_from_accounts():
    subnet = vpc_client.describe_subnets(
        Filters=[{'Name': 'tag:Name', 'Values': ['org-production-*']}])['Subnets']
    if len(subnet) > 0:
        # print([s['SubnetId'] for s in subnet])
        all_prod_subnets =  [ s['SubnetId'] for s in subnet ]
        print("[DEBUG]Queried Subnet ID's of Production are: {}".format(all_prod_subnets))
        return all_prod_subnets
    else:
        return None

def get_all_nonproduction_subnets_from_acccounts():
    subnet = vpc_client.describe_subnets(
        Filters=[{'Name': 'tag:Name', 'Values': ['org-non-production-*']}])['Subnets']
    if len(subnet) > 0:
        # print([s['SubnetId'] for s in subnet])
        all_non_prod_subnets =  [ s['SubnetId'] for s in subnet ]
        print("[DEBUG]Queried Subnet ID's of Non-Production are: {}".format(all_non_prod_subnets))
        return all_non_prod_subnets
    else:
        return None

一種方法如下:

def get_all_subnets_from_connectivity():

    subnets_found = {}
    
    # define subnet types of interest
    subnets_found['org-production'] = []
    subnets_found['org-non-production'] = []
    
    results = vpc_client.describe_subnets() 

    for subnet in results['Subnets']:

        if 'Tags' not in subnet:
            continue

        for tag in subnet['Tags']:

            if tag['Key'] != 'Name': continue
                
            for subnet_type in subnets_found:               
                if subnet_type in tag['Value']:
                    subnets_found[subnet_type].append(subnet['SubnetId'])

    return subnets_found



all_subnets = get_all_subnets_from_connectivity()


print(all_subnets)

示例 output:

{
'org-production': ['subnet-033bad31433b55e72', 'subnet-019879db91313d56a'], 
'org-non-production': ['subnet-06e3bc20a73b55283']
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM