21 lines
323 B
HCL
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"
|
|
}
|