This commit is contained in:
2023-10-18 18:40:55 +02:00
parent 1fac3163f7
commit a7ff84415e
5 changed files with 112 additions and 73 deletions

View File

@@ -0,0 +1,20 @@
variable "component" {
type = string
}
variable "instance" {
type = string
}
variable "namespace" {
type = string
}
variable "labels" {
type = map(string)
}
variable "port" {
type = number
default = 80
}
variable "target" {
type = string
default = "http"
}