Add ak-gatekeeper

This commit is contained in:
2024-10-08 16:41:52 +02:00
parent 47776ea7bf
commit 5dbc3bdea2
9 changed files with 262 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
variable "component" {
type = string
}
variable "instance" {
type = string
}
variable "domain" {
type = string
}
variable "namespace" {
type = string
}
variable "labels" {
type = map(string)
}
variable "dns_name" {
type = string
}
variable "access_token_validity" {
type = string
default = "hours=10" // ;minutes=10
}
variable "request_headers" {
type = map(string)
}