클라우드 정보 디자이너 섹션에서 다음 템플릿의 유효성을 검사하는 동안 오류가 발생합니다. 템플릿에 오류가 있습니다. :템플릿 형식이 잘못되었습니다. 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