terraform-portainer/docker-portainer-edge-agent/input.tf
2024-06-21 17:52:01 +02:00

26 lines
494 B
HCL

variable "docker" {
type = object({
name_agent = string
stack_name = optional(string)
})
}
variable "portainer" {
type = object({
version = string
})
}
variable "edge_id" {
type = string
description = "The ID of the edge agent"
default = null
}
variable "edge_key" {
type = string
description = "The key of the edge agent"
default = null
}
variable "debug" {
type = bool
description = "Enable debug mode"
default = false
}