terraform-nginx/inputs.tf

23 lines
379 B
Terraform
Raw Permalink Normal View History

2024-06-21 14:48:12 +00:00
variable "service_name" {
type = string
default = "nginx"
}
variable "configs" {
type = list(object({
file = string
id = string
name = string
}))
}
variable "networks" {
type = list(object({
name = string
id = string
}))
}
variable "replicas" {
type = number
default = 2
description = "The number of instances to deploy"
}