LoginSignup
0
2

More than 5 years have passed since last update.

CloudFormationでProperty DeviceIndex cannot be empty. が出る場合

Posted at

CloudFormationでProperty DeviceIndex cannot be empty.のエラーが出る場合があります。
AWS CloudFormation デザイナーで吐かれた↓のようなyamlで再現。

  ...

  EC2I3K8WP:
    Type: 'AWS::EC2::Instance'
    Properties:
      ImageId: ami-bec974d8
      NetworkInterfaces:
        - SubnetId: !Ref PNSubNet1
  ...

対応

インスタンスにSubnetIdを紐付けたかったので以下のように修正。

  ...

  EC2I3K8WP:
    Type: 'AWS::EC2::Instance'
    Properties:
      ImageId: ami-bec974d8
      SubnetId: !Ref PNSubNet1
  ...

備考

0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2