2014-06-16 122 views
0

是否可以在雲形成模板中的EC2實例上創建AMI圖像。 我已經搜索了AWS Cloud Formation的所有資源類型,但無法找到AMI的資源類型。AWS Cloud Formation模板創建EC2實例的圖像?

TIA

+0

[創建AMI映像作爲一個cloudformation棧的一部分]可能的重複(https://stackoverflow.com/questions/21431450/create-ami-image-as-part-of-a-cloudformation-stack) – billc

回答

0

不,這是不可能的。

技術說起捆綁圖片是一個過程,而不是AMI的資源

創建將由一個被稱爲AMI捆綁 [ec2-bundle-image]過程來實現。顯然,使用CloudFormation,您可以設置infra(AWS組件,並將它們與VPC等對齊)。

下面列出了使用CloudFormation進行的基於EC2的資源。

  • AWS EC2 :: :: CustomerGateway
  • AWS EC2 :: :: DHCPOptions
  • AWS EC2 :: :: EIP
  • AWS EC2 :: :: EIPAssociation
  • AWS EC2 :: ::實例
  • AWS EC2 :: :: InternetGateway
  • AWS EC2 :: :: NetworkAcl
  • AWS EC2 :: :: NetworkAclEntry
  • AWS EC2 :: :: NetworkInterface的
  • AWS EC2 :: :: NetworkInterfaceAttachment
  • AWS EC2 :: ::路線
  • AWS EC2 :: :: RouteTable
  • AWS EC2 :: :: SecurityGroup
  • AWS EC2 :: :: SecurityGroupEgress
  • AWS EC2 :: :: SecurityGroupIngress
  • AWS EC2 :: ::子網
  • AWS EC2 :: :: SubnetNetworkAclAssociation
  • AWS EC2 :: :: SubnetRouteTableAssociation
  • AWS EC2 :: ::卷
  • AWS EC2 :: :: VolumeAttachment
  • AWS EC2 :: :: VPC
  • AWS EC2 :: :: VPCDHCPOptionsAssociation
  • AWS EC2 :: :: VPCGatewayAttachment
  • AWS EC2 :: :: VPNConnection
  • AWS EC2 :: :: VPNConnectionRoute
  • AWS EC2 :: :: VPNGateway
+0

謝謝Naveen,解決了我的問題! – user3744067

相關問題