nebula/docker/variables.tf

54 lines
899 B
Terraform
Raw Permalink Normal View History

2017-11-04 13:39:32 +00:00
variable "web_username" {
type = string
2017-11-04 13:39:32 +00:00
}
variable "web_password" {
type = string
2017-11-04 13:39:32 +00:00
}
variable "cloudflare_key" {
type = string
description = "cloudflare API Key"
}
variable "cloudflare_email" {
type = string
description = "cloudflare email address"
}
2017-11-26 20:16:49 +00:00
# Bcrypt
variable "basic_auth" {
default = "tatooine:$2y$05$iPbatint3Gulbs6kUtyALO9Yq5sBJ..aiF82bcIziH4ytz9nFoPr6,reddit:$2y$05$ghKxSydYCpAT8r2VVMDmWO/BBecghGfLsRJUkr3ii7XxPyxBqp8Oy"
}
2017-11-29 20:14:05 +00:00
# 30 days
variable "hsts_max_age" {
default = "2592000"
}
variable "xfo_allow" {
default = "ALLOW-FROM https://home.bb8.fun/"
2017-11-29 20:14:05 +00:00
}
variable "xpoweredby" {
default = "X-Powered-By:Allomancy||X-Server:Blackbox"
2017-11-29 20:14:05 +00:00
}
variable "refpolicy" {
default = "no-referrer"
}
2017-12-03 14:52:14 +00:00
variable "wiki_session_secret" {
type = string
2017-12-03 14:52:14 +00:00
}
2017-12-26 13:55:43 +00:00
2017-12-26 15:20:52 +00:00
variable "domain" {
type = string
2017-12-26 15:20:52 +00:00
}
2017-12-26 13:55:43 +00:00
variable "ips" {
type = map(string)
2017-12-26 13:55:43 +00:00
}
2018-05-05 20:15:12 +00:00
# variable "links-mariadb" {}