nebula/variables.tf

30 lines
426 B
Terraform
Raw Normal View History

2017-11-04 13:39:32 +00:00
variable "cloudflare_key" {
2017-12-26 13:55:43 +00:00
type = "string"
2017-11-04 13:39:32 +00:00
description = "cloudflare API Key"
}
variable "web_username" {
type = "string"
}
variable "web_password" {
type = "string"
}
variable "mysql_root_password" {
type = "string"
2017-12-03 14:52:14 +00:00
}
variable "wiki_session_secret" {
type = "string"
}
2017-12-26 15:20:52 +00:00
variable "ips" {
type = "map"
default = {
eth0 = "192.168.1.111"
tun0 = "10.8.0.14"
static = "139.59.48.222"
2017-12-26 15:20:52 +00:00
}
}