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 fa2fd4d commit 56bc4cdCopy full SHA for 56bc4cd
terraform/layer2-k8s/eks-keda.tf
@@ -52,6 +52,32 @@ module "keda_namespace" {
52
}
53
]
54
55
+ },
56
+ {
57
+ name = "allow-control-plane"
58
+ policy_types = ["Ingress"]
59
+ pod_selector = {
60
+ match_expressions = {
61
+ key = "app"
62
+ operator = "In"
63
+ values = ["keda-operator-metrics-apiserver"]
64
+ }
65
66
+ ingress = {
67
+ ports = [
68
69
+ port = "6443"
70
+ protocol = "TCP"
71
72
+ ]
73
+ from = [
74
75
+ ip_block = {
76
+ cidr = "0.0.0.0/0"
77
78
79
80
81
82
83
0 commit comments