Opinionated.tf/products/ddclient/inputs.tf

44 lines
784 B
Terraform
Raw Permalink Normal View History

2025-02-14 20:23:19 +00:00
variable "interval_seconds" {
default = 300
type = number
}
2025-02-14 19:51:43 +00:00
variable "stack_name" {
default = "dns"
type = string
description = "The name of the stack to create."
}
variable "placement_constraints" {
default = []
type = list(string)
description = "Docker Swarm placement constraints"
}
variable "protocol" {
type = string
}
variable "router" {
type = string
default = "webv4,webv4=ipify-ipv4"
}
variable "domain" {
type = string
}
2025-02-14 20:23:19 +00:00
variable "onrootdomain" {
default = false
type = bool
}
2025-02-14 19:51:43 +00:00
variable "login" {
type = string
default = null
}
variable "password" {
type = string
default = null
}
variable "apikey" {
type = string
default = null
}
variable "secretapikey" {
type = string
default = null
}