如何在AWS Cloudformation模板中将现有ENI添加为Eth0

时间:2019-08-09 09:43:40

标签: amazon-cloudformation

我有ENI(eni-0c6f3e911XXX),并希望使用cloud-formation template将其添加为EC2中的Eth0。 Ec2应该只有此接口。

谢谢

1 个答案:

答案 0 :(得分:0)

在cloudformation中,您可以通过ID指定您的ENI

MyEC2Instance" : {
   "Type" : "AWS::EC2::Instance",
   "Properties" : {
      "ImageId" : "ami-79fd7eee",
      "KeyName" : "testkey",
      "NetworkInterfaces": [
        {
          "NetworkInterfaceId" : String,
        }
      ]
   }
}