我有ENI(eni-0c6f3e911XXX),并希望使用cloud-formation template将其添加为EC2中的Eth0。 Ec2应该只有此接口。
谢谢
答案 0 :(得分:0)
在cloudformation中,您可以通过ID指定您的ENI
MyEC2Instance" : {
"Type" : "AWS::EC2::Instance",
"Properties" : {
"ImageId" : "ami-79fd7eee",
"KeyName" : "testkey",
"NetworkInterfaces": [
{
"NetworkInterfaceId" : String,
}
]
}
}