-
Notifications
You must be signed in to change notification settings - Fork 82
/
variables.sample
47 lines (33 loc) · 847 Bytes
/
variables.sample
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# this is a sample variables file.
# tokens, api keys
variable "do-token" {
default = "yourdigitaloceantoken" }
variable "cf-token" {
default = "yourcloudflaretoken" }
variable "cf-email" {
default = "[email protected]" }
# operator IPs
variable "operator-ip" {
default = "aaa.bbb.ccc.ddd" }
# ssh keys
variable "ssh-public-key" {
default = "/root/.ssh/id_rsa.pub" }
# domains & subdomains
variable "domain-rdir" {
default = "example.com" }
variable "domain-c2" {
default = "example.net" }
variable "sub1" {
default = "static" }
variable "sub2" {
default = "ads" }
variable "sub3" {
default = "js" }
variable "sub4" {
default = "css" }
variable "sub5" {
default = "apple" }
variable "sub6" {
default = "login" }
variable "cspw" {
default = "somecrazystrongpasswordgoesherelel" }