1

创建 vpc 时如何使用 AWS 开发工具包指定 VPC 名称标签?我尝试了许多选项,如此处所示,但没有成功。

以下是我使用 python、boto3 SDK 创建 VPC 的方法。

import os
import boto3
import time    
....
....
print('Creating VPC')
# Create new VPC environment
vpc = client.create_vpc(CidrBlock='10.0.0.0/16', InstanceTenancy='default')
client.modify_vpc_attribute(VpcId=vpc['Vpc']['VpcId'], EnableDnsSupport={'Value': True})
client.modify_vpc_attribute(VpcId=vpc['Vpc']['VpcId'], EnableDnsHostnames={'Value': True})

目前,它创建没有名称标签的 vpc。

我尝试在创建 vpc 或修改它时指定标签,如下所示,但没有一个选项起作用。

vpc = client.create_vpc(CidrBlock='10.0.0.0/16', InstanceTenancy='default', Tags="myvpcnametag")
client.modify_vpc_attribute(VpcId=vpc['Vpc']['VpcId'], Tags="myvpctag")
4

1 回答 1

4

如果您有 VPC id,这样的事情应该可以工作:

client = boto3.client('ec2')
client.create_tags(Resources=['vpc-78a54011'], Tags=[{'Key': 'Name', 'Value': 'MyVPC'}])

这是我如何修改它并且效果很好。

创建新的 VPC 环境

vpc = client.create_vpc(CidrBlock='10.0.0.0/16', InstanceTenancy='default')

client.modify_vpc_attribute(VpcId=vpc['Vpc']['VpcId'], EnableDnsSupport={'Value': True})
client.modify_vpc_attribute(VpcId=vpc['Vpc']['VpcId'], EnableDnsHostnames={'Value': True})

client.create_tags(Resources=[vpc['Vpc']['VpcId']], Tags=[{'Key': 'Name', 'Value': 'DariusVPC'}])
于 2018-04-30T22:20:22.877 回答