【问题标题】:AWS Cloudformation Create-Stack Template ErrorAWS Cloudformation 创建堆栈模板错误
【发布时间】:2020-03-30 09:55:02
【问题描述】:

所以我试图在 CF 中为 API 提供一些资源。我有以下 yml 文件,但我不断收到模板错误并且看不到问题。

AWSTemplateFormatVersion: "2010-09-09"
Description: 'container cluster on ECS, loadbalancer, security groups and cloudwatch'

Resources:

  ECSCluster:
    Type: AWS::ECS::Cluster
    Properties:
      ClusterName: 'hello-cluster'

  LoadBalancer:
    Type: AWS::ElasticLoadBalancingV2::LoadBalancer
    Properties:
      Name: ecs-services
      Subnets:
        #these imports will pull from export name of the vpc stack that we made
        - 'subnet-abcdefg'
        - 'subnet-abcdefo'
        - 'subnet-abcdefp'
      SecurityGroups:
        #references the LoadBalancerSecurityGroup below
        - !Ref LoadBalancerSecurityGroup

  #port 80 for POC, then add 443
  LoadBalancerListener:
    Type: AWS::ElasticLoadBalancingV2::Listener
    Properties:
      #references LoadBalancer above
      LoadBalancerArn: !Ref LoadBalancer
      Protocol: HTTP
      Port: 80
      DefaultActions:
        - Type: forward
          #references target group below
          TargetGroupArn: !Ref DefaultTargetGroup

  #this is very open, we won't want this
  LoadBalancerSecurityGroup:
    Type: AWS::EC2::SecurityGroup
    Properties:
      GroupDescription: Security group for loadbalancer to services on ECS
      VpcId: 'vpc-abcdefg'
      SecurityGroupIngress:
        - CidrIp: 0.0.0.0/0
          IpProtocol: -1

  DefaultTargetGroup:
    Type: AWS::ElasticLoadBalancingV2::TargetGroup
    Properties:
      Name: default
      #imports vpc export name from previous stack
      VpcId: 'vpc-abcdefg'
      Protocol: 'HTTP'
      Port: '80'  

  #extranious for now
  CloudWatchLogsGroup:
    Type: AWS::Logs::LogGroup
    Properties:
      LogGroupName: 'apis'
      RetentionInDays: 1

  ## security group for containers simliar to load balancer getting connections from the internet,
  ## this will allow connections from the load balancer
  ContainerSecurityGroup:
    Type: AWS::EC2::SecurityGroup      
    Properties:
     VpcId: 'vpc-abcdefg'
     GroupDescription: for ecs containers
     SecurityGroupIngress:
       - SourceSecurityGroupId: !Ref 'LoadBalancerSecurityGroup'
         IpProtocol: -1


Outputs:

  Cluster:
    Value: !Ref ECSCluster
    Export:
      Name: 'ECSCluster'

  Listener:
    Description: listener port 80
    Value: !Ref LoadBalancerListener
    Export:
      Name: 'Listener'

  ContainerSecurityGroup:
    Description: container security group
    Value: !Ref ContainerSecurityGroup
    Export:
      Name: 'ContainerSecurityGroup'

  LoadBalancerDNS:
    Description: Domain name for the loadbalancer
    Value: !GetAtt LoadBalancer.DNSName
    Export:
      Name: 'DomainName'

当我运行它来创建我的堆栈时,它给了我一个错误。

aws cloudformation create-stack --stack-name app-cluster --template-body file://infra/app-cluster.yml

错误是:An error occurred (ValidationError) when calling the CreateStack operation: Invalid template property or properties [???AWSTemplateFormatVersion]

当我删除前两行并将第一行设为“资源”时,我收到此错误An error occurred (ValidationError) when calling the CreateStack operation: Template format error: At least one Resources member must be defined.

感觉我必须错过一些简单的东西,但我只是没有看到它。谢谢

【问题讨论】:

  • 我尝试使用 UI 创建您的模板并且它正在工作。这看起来像是 AWS CLI 命令的问题。我的猜测是 YAML 以某种方式被破坏了。
  • 也使用 cli 进行了检查,它正在工作,您的文件已损坏 100%

标签: amazon-web-services yaml amazon-cloudformation amazon-ecs


【解决方案1】:

三个“???”表示您的文件中有BOM

请将模板文件保存为 UTF-8(不含 BOM),它应该可以解决问题。这将取决于您的editor

【讨论】:

  • 谢谢。想弄清楚脚本本身出了什么问题,我快疯了!
猜你喜欢
  • 2018-11-24
  • 2018-10-01
  • 2021-06-29
  • 1970-01-01
  • 2018-03-20
  • 2021-12-29
  • 2018-06-05
  • 2016-08-13
  • 1970-01-01
相关资源
最近更新 更多