first commit
This commit is contained in:
24
service/variables.tf
Normal file
24
service/variables.tf
Normal file
@@ -0,0 +1,24 @@
|
||||
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"]
|
||||
}
|
||||
Reference in New Issue
Block a user