如何使用boto在aws route53中的托管区域中添加/删除vpc?

时间:2015-03-20 05:39:01

标签: python amazon-web-services boto amazon-route53

我在路线53中使用boto,我可以使用私有区域和vpc创建托管区域,

zone = conn.create_hosted_zone('test_yyy.com', private_zone=True, vpc_id='vpc-0dba83fhd', vpc_region='us-east-1')

但我需要在创建的区域中添加/删除vpc

是否有可能通过boto进行?

1 个答案:

答案 0 :(得分:1)

您可以使用AssociateVPCWithHostedZone [1] Route 53 API调用。最近看起来像是boto [2]在变更中合并以支持这一点。

  1. http://docs.aws.amazon.com/Route53/latest/APIReference/API_AssociateVPCWithHostedZone.html
  2. https://github.com/boto/boto/issues/2886