variable "vigil_version" {
type = string
description = "The version of Vigil to deploy"
default = "v1.26.3"
}
variable "vigil_service_name" {
description = "The name of the Vigil service"
default = "vigil"
variable "docker_networks" {
type = list(object({
id = string,
name = string,
}))
description = "Docker networks to connect the vigil service to"
default = null
variable "monitored_services" {
type = map(list(object({
id = string
label = string
endpoints = list(string)
http_method = optional(string, null)
})))
variable "page_title" {
description = "The title of the Vigil page"
default = "Vigil"
variable "page_url" {
description = "The URL of the Vigil page"
default = "https://vigil.example.com"
variable "company_name" {
description = "The name of the company"
default = "ExampleCo"
variable "icon_color" {
description = "The color of the icon"
default = "#1972F5"
variable "icon_url" {
description = "The URL of the icon"
default = "https://example.com/icon.png"
variable "logo_color" {
description = "The color of the logo"
variable "logo_url" {
description = "The URL of the logo"
default = "https://example.com/logo.png"
variable "website_url" {
description = "The URL of the website"
default = "https://example.com"
variable "support_url" {
description = "The URL of the support page"
default = "https://example.com/support"
variable "custom_html" {
description = "Custom HTML to include in the Vigil page"
default = ""