Merge pull request #111 from michaelsstuff/master
added traefik option for 'insecureSkipVerify'
This commit is contained in:
commit
c3e320dc76
1
init.tf
1
init.tf
@ -99,6 +99,7 @@ resource "null_resource" "kustomization" {
|
|||||||
location = var.location
|
location = var.location
|
||||||
traefik_acme_tls = var.traefik_acme_tls
|
traefik_acme_tls = var.traefik_acme_tls
|
||||||
traefik_acme_email = var.traefik_acme_email
|
traefik_acme_email = var.traefik_acme_email
|
||||||
|
traefik_additional_options = var.traefik_additional_options
|
||||||
})
|
})
|
||||||
destination = "/tmp/post_install/traefik.yaml"
|
destination = "/tmp/post_install/traefik.yaml"
|
||||||
}
|
}
|
||||||
|
@ -24,6 +24,9 @@ spec:
|
|||||||
- "--entryPoints.websecure.proxyProtocol.trustedIPs=127.0.0.1/32,10.0.0.0/8"
|
- "--entryPoints.websecure.proxyProtocol.trustedIPs=127.0.0.1/32,10.0.0.0/8"
|
||||||
- "--entryPoints.web.forwardedHeaders.trustedIPs=127.0.0.1/32,10.0.0.0/8"
|
- "--entryPoints.web.forwardedHeaders.trustedIPs=127.0.0.1/32,10.0.0.0/8"
|
||||||
- "--entryPoints.websecure.forwardedHeaders.trustedIPs=127.0.0.1/32,10.0.0.0/8"
|
- "--entryPoints.websecure.forwardedHeaders.trustedIPs=127.0.0.1/32,10.0.0.0/8"
|
||||||
|
%{ for option in traefik_additional_options ~}
|
||||||
|
- "${option}"
|
||||||
|
%{ endfor ~}
|
||||||
%{ if traefik_acme_tls ~}
|
%{ if traefik_acme_tls ~}
|
||||||
- "--certificatesresolvers.le.acme.tlschallenge=true"
|
- "--certificatesresolvers.le.acme.tlschallenge=true"
|
||||||
- "--certificatesresolvers.le.acme.email=${traefik_acme_email}"
|
- "--certificatesresolvers.le.acme.email=${traefik_acme_email}"
|
||||||
|
@ -90,3 +90,7 @@ load_balancer_type = "lb11"
|
|||||||
# ]
|
# ]
|
||||||
# },
|
# },
|
||||||
# ]
|
# ]
|
||||||
|
|
||||||
|
# If you want to configure additional Arguments for traefik, enter them here as a list and in the form of traefik CLI arguments; see https://doc.traefik.io/traefik/reference/static-configuration/cli/
|
||||||
|
# Example: traefik_additional_options = ["--log.level=DEBUG", "--tracing=true"]
|
||||||
|
# traefik_additional_options = []
|
||||||
|
@ -120,3 +120,8 @@ variable "extra_firewall_rules" {
|
|||||||
default = []
|
default = []
|
||||||
description = "Additional firewall rules to apply to the cluster"
|
description = "Additional firewall rules to apply to the cluster"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
variable "traefik_additional_options" {
|
||||||
|
type = list(string)
|
||||||
|
default = []
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user