Opinionated.tf/docker/network/inputs.tf

22 lines
512 B
Terraform
Raw Permalink Normal View History

2024-07-29 19:28:08 +00:00
variable "stack_name" {
2024-11-23 04:06:26 +00:00
description = "The name of the collective stack"
type = string
}
variable "labels" {
type = map(string)
default = {}
description = "A map of labels to apply to the service"
}
2024-11-26 09:50:53 +00:00
variable "network_name" {
type = string
description = "Override the automatically selected name of the network"
default = null
}
variable "subnet" {
type = string
description = "The subnet to use for the network."
default = null //"172.16.0.0/16"
}