前提・実現したいこと
Elastic Beanstalkでの構築の際にALBのリスナールールを設定する方法を探しています。
発生している問題・エラーメッセージ
下記のソースコードをapp/src/.ebextensions/resources.config
に追加し再構築しましたがリスナーは追加されませんでした。
参考記事
https://qiita.com/yoshi-taka/items/9daa9ff979e0511bb013
該当のソースコード (resources.config)
Resources: fixedResponseRequestListenerRule: Type: AWS::ElasticLoadBalancingV2::ListenerRule Properties: Actions: - Type: fixed-response FixedResponseConfig: StatusCode: 200 ContentType: "application/json" MessageBody: '{"message": "fixed"}' Conditions: - Field: path-pattern PathPatternConfig: Values: - "/api/fixedresponse" ListenerArn: { "Ref" : "AWSEBV2LoadBalancerListener" } Priority: 1000
詳しい方よろしくお願いします。
あなたの回答
tips
プレビュー