-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How do I create rule without path-pattern
?
#573
Comments
It's not possible, the ALB requires that a rule matches a path. Does this create an issue or is it just unexpected? |
https://docs.aws.amazon.com/ja_jp/elasticloadbalancing/latest/APIReference/API_RuleCondition.html ALB allows host-header only rule, path-pattern could omitted. for example Current situation If we want to use host name based routing using this plugin, we need to set |
I am also being affected by this issue. It appears this bug was introduced in #476 (first released as I can verify that path-less rules work in version |
yeah totally a bug, was just fixed in #670 |
The problem close to Issue was reviving. If there is no path-pattern or if "/ *" is specified for path-pattern, both actions are the same, but the upper limit (100) of the number of rules applicable to ALB has been affected. By specifying "/ *" automatically, host-based rules can only be created up to 50. |
I thought that using this plugin, I would like to create a rule with only the host header. The definition is as follows.
However, path-pattern '/' is automatically added. I want to exclude the path-pattern from the rule, is it possible?
The text was updated successfully, but these errors were encountered: