You've already forked terraform-bunnynet
24 lines
500 B
HCL
24 lines
500 B
HCL
variable "name" {
|
|
type = string
|
|
default = "git-rznet"
|
|
description = "The name of the pullzone"
|
|
}
|
|
|
|
variable "domain" {
|
|
type = string
|
|
default = "bunny.git.rznet.fr"
|
|
description = "The domain name for the pullzone"
|
|
}
|
|
|
|
variable "origin" {
|
|
type = string
|
|
default = "https://rznet.fr"
|
|
description = "The origin URL"
|
|
}
|
|
|
|
variable "origin_host" {
|
|
type = string
|
|
default = "git.rznet.fr"
|
|
description = "The host header to send to the origin"
|
|
}
|