我用 cloudformation 创建了 ec2 实例。当我尝试在同一个模板中更新实例的安全组时,cloudformation 会重新创建实例而不是修改相同的实例(就像在 terraform 中一样)。如何在不重新创建实例的情况下更新 SecurityGroup?
例如下面的模板 -
Resources:
Ec2Instance:
Type: 'AWS::EC2::Instance'
Properties:
InstanceType: t2.micro
ImageId: ami-0ed9277fb7eb570c9
SecurityGroupIds:
- sg-09d68774a93ec40df
现在,如果我尝试添加另一个 SecurityGroupIds 它会重新创建 ec2 -
Resources:
Ec2Instance:
Type: 'AWS::EC2::Instance'
Properties:
InstanceType: t2.micro
ImageId: ami-0ed9277fb7eb570c9
SecurityGroupIds:
- sg-09d68774a93ec40df
- sg-05555951931eeaca7