CloudFormationテンプレートのNetworkInterfaceを参照すると、エラーValue of property NetworkInterfaces must be a list of objects
が表示されます。CloudFormationエラー:プロパティの値NetworkInterfacesはオブジェクトのリストである必要があります
MyAppNetworkInterface: Type: AWS::EC2::NetworkInterface Properties: SubnetId: !Ref SubnetPrivate
MyApp: Type: AWS::EC2::Instance Properties: InstanceType: t2.medium NetworkInterfaces: - !Ref MyAppNetworkInterface
感謝。完璧。 –