24 lines
394 B
HCL
24 lines
394 B
HCL
variable "component" {
|
|
type = string
|
|
}
|
|
variable "instance" {
|
|
type = string
|
|
}
|
|
variable "namespace" {
|
|
type = string
|
|
}
|
|
variable "labels" {
|
|
type = map(string)
|
|
}
|
|
variable "ports" {
|
|
type = list
|
|
default = [80]
|
|
}
|
|
variable "targets" {
|
|
type = list
|
|
default = ["http"]
|
|
}
|
|
variable "protocols" {
|
|
type = list
|
|
default = ["TCP"]
|
|
} |