我有一个简单的CF模板,用于启动ec2示例和负载平衡器,并在CF模板中设置监听程序规则。我在配置HTTPListener时遇到问题,HTTPListener需要负载平衡器的arn,但该arn仍在生成中,我无法提供。
HTTPlistener:
Type: 'AWS::ElasticLoadBalancingV2::Listener'
DependsOn: ElasticLoadBalancer
Properties:
DefaultActions:
- Type: fixed-response
FixedResponseConfig:
ContentType: text/plain
MessageBody: Success
StatusCode: '200'
LoadBalancerArn:
!GetAtt ElasticLoadBalancer.LoadBalancerArn
Port: '443'
Protocol: HTTPS
Certificates:
- CertificateArn: >-
我试过!GetAtt ElasticLoadBalancer.LoadBalancerArn
,但似乎不起作用。有人能帮忙吗?
1条答案
按热度按时间sycxhyv71#
要获取ARN,只需使用
Ref
: