added traefik option for 'insecureSkipVerify'

This commit is contained in:
Michael Schietzsch
2022-03-04 15:02:54 +01:00
parent 6f6de884ec
commit 1da0724ab4
4 changed files with 14 additions and 0 deletions

View File

@@ -119,3 +119,9 @@ variable "extra_firewall_rules" {
default = []
description = "Additional firewall rules to apply to the cluster"
}
variable "insecureSkipVerify" {
type = bool
default = false
description = "Whether to set the insecureSkipVerify=true configuration with the Traefik configuration"
}