Opinionated.tf/docker/config/inputs.tf

18 lines
428 B
Terraform
Raw Permalink Normal View History

2024-11-23 04:06:26 +00:00
variable "stack_name" {
type = string
description = "The name of the stack to deploy the service to."
}
variable "name" {
type = string
description = "The name of the docker config."
}
variable "value" {
type = string
description = "The value of the docker config."
}
variable "labels" {
type = map(string)
default = {}
description = "A map of labels to apply to the service"
}