【问题标题】:Error while creating Application Load Balancer in Cloudformation... XXXXX must be in ARN format在 Cloudformation 中创建 Application Load Balancer 时出错... XXXXX 必须是 ARN 格式
【发布时间】:2019-01-19 13:15:57
【问题描述】:

使用 AWS CloudFormation 服务,我尝试在 2 个 EC2 实例上创建 Application Elastic Load Balancer,但在创建侦听器 [AWS::ElasticLoadBalancingV2::Listener] 时遇到错误,如下所示:

“AELB-ElasticLoadBa-XDTNTTXRZMC8' 必须是 ARN 格式(服务:AmazonElasticLoadBalancingV2;状态代码:400;错误代码:ValidationError;请求 ID:9b18bb79-9e58-11e8-9b70-c9b2be714e80)”

我已经参考了 aws 代码模板并在下面添加了代码,我是否遗漏了什么?

ElasticLoadBalancer:
Type: 'AWS::ElasticLoadBalancing::LoadBalancer'
Properties:
  Instances: [!Ref 'webServer1', !Ref 'webServer2']  
  CrossZone: 'true'
  Listeners:
  - LoadBalancerPort: '80'
    InstancePort: '80'
    Protocol: HTTP
  Subnets:
    - !Ref pubSubnet
  SecurityGroups: 
    - !Ref LoadBalancerSecurityGroup
  HealthCheck:
    Target: HTTP:80/
    HealthyThreshold: '3'
    UnhealthyThreshold: '5'
    Interval: '30'
    Timeout: '5'

TargetGroupService1: 
Type: 'AWS::ElasticLoadBalancingV2::TargetGroup'
Properties: 
  Name: 
    'Fn::Join': 
      - '-'
      - - Ref: 'AWS::StackName'
        - 'TargetGroupService1'

  Port: 10
  Protocol: HTTP
  #HealthCheckPath: /service1
  Targets:
  - Id:
      Ref: webServer1
    Port: 80
  VpcId: !Ref myDemoVPC

TargetGroupService2: 
Type: 'AWS::ElasticLoadBalancingV2::TargetGroup'
Properties: 
  Name: 
    'Fn::Join': 
      - '-'
      - - Ref: 'AWS::StackName'
        - 'TargetGroupService2'

  Port: 10
  Protocol: HTTP
  #HealthCheckPath: /service2
  Targets:
  - Id:
      Ref: webServer2
    Port: 80
  VpcId: !Ref myDemoVPC

Listener:
Type: 'AWS::ElasticLoadBalancingV2::Listener'
Properties:
  DefaultActions:
  - Type: forward
    TargetGroupArn: !Ref TargetGroupService1
  LoadBalancerArn: !Ref ElasticLoadBalancer
  Port: '80'
  Protocol: HTTP

ListenerRuleService1:
Type: 'AWS::ElasticLoadBalancingV2::ListenerRule'
Properties:
  Actions:
    - Type: forward
      TargetGroupArn: !Ref TargetGroupService1
  Conditions:
  - Field: path-pattern
    Values:
    - "/service1"
  ListenerArn: !Ref Listener
  Priority: 1

ListenerRuleService2:
Type: 'AWS::ElasticLoadBalancingV2::ListenerRule'
Properties:
  Actions:
    - Type: forward
      TargetGroupArn: !Ref TargetGroupService2
  Conditions:
  - Field: path-pattern
    Values:
    - "/service2"
  ListenerArn: !Ref Listener
  Priority: 2

【问题讨论】:

    标签: amazon-cloudformation aws-elb


    【解决方案1】:

    您使用了错误的 cloudformation 资源。应用程序负载均衡器的TypeAWS::ElasticLoadBalancingV2::LoadBalancer。注意V2。您正在使用的那个创建了一个经典的负载均衡器。

    您遇到的错误是由于经典 LB 和应用程序 LB 之间 Ref 函数的返回值不同。

    当您指定时:

    LoadBalancerArn: !Ref ElasticLoadBalancer

    RefClassic LB 返回资源名称 (AELB-ElasticLoadBa-XDTNTTXRZMC8),而 Ref ALB 返回资源 Arn,这是 V2 侦听器对 LoadBalancerArn 属性的期望。

    将逻辑名称为ElasticLoadBalancer 的资源替换为具有here 描述的适当属性的V2 负载均衡器应该可以解决您的问题。

    【讨论】:

    • @Smi 很高兴它成功了。如果您认为它有助于解决您的问题,您可以接受我的回答 :)
    猜你喜欢
    • 2020-08-27
    • 2020-11-29
    • 2021-01-21
    • 2020-08-13
    • 2020-08-03
    • 1970-01-01
    • 1970-01-01
    • 2019-06-04
    • 1970-01-01
    相关资源
    最近更新 更多