AWS Cloud Formation 模板包含错误。: 模板格式错误:YAML 格式不正确。 (第 7 行,第 1 列)

AWS Cloud Formation 模板包含错误。: 模板格式错误:YAML 格式不正确。 (第 7 行,第 1 列)

在云信息设计器部分验证以下模板时,出现错误:模板包含错误。:模板格式错误:YAML 格式不正确。 (第 7 行,第 1 列)....任何人都可以更正第 7 行第 1 列的语法。

  1 AWSTemplateFormatVersion: 2010-09-09
  2 Resources:
  3  Ec2Instance:
  4    Type: AWS::EC2::Instance
  5    Properties:
  6     Securitygroups:
  7           -!Ref InstanceSecurityGroup
  8         KeyName: testkey
  9         ImageId: ''
 10  InstanceSecurityGroup:
 11     Type: AWS::Ec2::SecurityGroup
 12         Properties:
 13          GroupDescription: Enable SSH access via port 22
 14          SecurityGroupIngress:
 15           - IpProtocol: tcp
 16             FromPort: '22'
 17                 ToPort: '22'
 18                 CidrIp: 0.0.0.0/0

相关内容