We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5cb774f commit 22fa133Copy full SHA for 22fa133
kubernetes/ingress/locals.tf
kubernetes/ingress/main.tf
@@ -1,11 +1,11 @@
1
resource "kubernetes_ingress_v1" "generic-ingress" {
2
metadata {
3
- name = local.name
+ name = var.dns_name
4
labels = {
5
- app = local.name
+ app = var.dns_name
6
}
7
annotations = {
8
- "cert-manager.io/cluster-issuer" : "letsencrypt-prod" // unsued on cf
+ "cert-manager.io/cluster-issuer": "letsencrypt-prod"
9
"kubernetes.io/ingress.class" : "default"
10
"haproxy.org/check" : "false" // todo: use http-check
11
"haproxy.org/check-http" : "/health.txt"
0 commit comments