You've already forked terraform-fastly
41 lines
665 B
HCL
41 lines
665 B
HCL
variable "domain" {
|
|
type = string
|
|
default = "dev.git.rznet.fr"
|
|
}
|
|
|
|
variable "backend" {
|
|
type = string
|
|
default = "rznet.fr"
|
|
}
|
|
|
|
variable "backend_cert_hostname" {
|
|
type = string
|
|
default = "rznet.fr"
|
|
}
|
|
|
|
variable "default_ttl" {
|
|
type = number
|
|
default = 3600
|
|
}
|
|
|
|
variable "stale_ttl" {
|
|
type = number
|
|
default = 86400
|
|
}
|
|
|
|
variable "allowed_cors_domains" {
|
|
type = list(string)
|
|
default = []
|
|
}
|
|
|
|
variable "enable_brotli" {
|
|
type = bool
|
|
default = true
|
|
}
|
|
|
|
variable "purge_allowed_ips" {
|
|
type = list(string)
|
|
description = "List of IP addresses/CIDR blocks allowed to send PURGE requests"
|
|
default = ["51.159.107.20"]
|
|
}
|