We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8548c8 commit 93c4734Copy full SHA for 93c4734
obp_private_alb_config/private-alb-waf.tf
@@ -65,6 +65,35 @@ resource "aws_wafv2_web_acl" "basic_protection" {
65
}
66
67
68
+ rule {
69
+ name = "obi-allow-all-jupyterhub"
70
+ priority = 6
71
+
72
+ action {
73
+ allow {}
74
+ }
75
76
+ statement {
77
+ byte_match_statement {
78
+ field_to_match {
79
+ uri_path {}
80
81
+ positional_constraint = "STARTS_WITH"
82
+ search_string = "/jupyter"
83
+ text_transformation {
84
+ priority = 0
85
+ type = "NONE"
86
87
88
89
+ visibility_config {
90
+ cloudwatch_metrics_enabled = false
91
+ metric_name = "obi_allow-jupyterhub-traffic"
92
+ sampled_requests_enabled = false
93
94
95
96
97
rule {
98
name = "aws-common-ruleset"
99
priority = 10
0 commit comments