28 lines
561 B
Terraform
28 lines
561 B
Terraform
variable "gridscale_uuid" {
|
|
type = string
|
|
description = "OVH Gridscale UUID"
|
|
}
|
|
|
|
variable "gridscale_token" {
|
|
type = string
|
|
description = "OVH Gridscale API Token"
|
|
sensitive = true
|
|
}
|
|
|
|
variable "caddy_hostname" {
|
|
type = string
|
|
description = "Caddy hostname"
|
|
default = "caddy01"
|
|
}
|
|
|
|
variable "monitoring_hostname" {
|
|
type = string
|
|
description = "Monitoring hostname"
|
|
default = "monitoring01"
|
|
}
|
|
|
|
variable "nginx_hostname" {
|
|
type = string
|
|
description = "Nginx hostname"
|
|
default = "nginx01"
|
|
} |