17 lines
280 B
Terraform
17 lines
280 B
Terraform
|
variable "docker" {
|
||
|
type = object({
|
||
|
name = string
|
||
|
stack_name = optional(string)
|
||
|
networks = list(object({
|
||
|
name = string
|
||
|
id = string
|
||
|
}))
|
||
|
})
|
||
|
}
|
||
|
variable "portainer" {
|
||
|
type = object({
|
||
|
version = string
|
||
|
logo = optional(string)
|
||
|
})
|
||
|
}
|