Files
domain/modules/service/variables.tf
2023-10-18 18:40:55 +02:00

21 lines
323 B
HCL

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"
}