You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description
Currently mu only supports one path pattern for the service ALB, as the generation of the CloudFormation template passes your mu.yml pathPatterns: array directly into the AWS::ElasticLoadBalancingV2::ListenerRule > Conditions > Values property, which despite it's name only accepts one path pattern.
If mu's internals are refactored slightly to generate a new ElbHttp(s)PathListenerRule for each path pattern in mu.yml and the pathPatterns: node n mu.yml is changed from an array to a map, it should be possible to support this use case and preserve the ability to target rules in Cfn, eg:
Description
Currently mu only supports one path pattern for the service ALB, as the generation of the CloudFormation template passes your mu.yml
pathPatterns:
array directly into theAWS::ElasticLoadBalancingV2::ListenerRule
>Conditions
>Values
property, which despite it's name only accepts one path pattern.If mu's internals are refactored slightly to generate a new
ElbHttp(s)PathListenerRule
for each path pattern in mu.yml and thepathPatterns:
node n mu.yml is changed from an array to a map, it should be possible to support this use case and preserve the ability to target rules in Cfn, eg:Could become the following Cfn
The text was updated successfully, but these errors were encountered: