-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
89 lines (72 loc) · 1.77 KB
/
variables.tf
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
variable "private_key" {
type = string
description = "The private key to use for ssh access"
}
variable "compartment_ocid" {
type = string
description = "The compartment to deploy the instance in"
}
variable "env_name" {
type = string
description = "The display name prefix of the infrastructure resources"
}
variable "availability_domain_number" {
description = "The availability domain to host the instance"
type = string
}
variable "compute_shape" {
type = string
description = "Compute shape to use for the instance"
}
variable "mariadb_database" {
type = string
description = "The name of the database"
}
variable "mariadb_user" {
type = string
description = "The name of the database user"
}
variable "mariadb_password" {
type = string
description = "The password of the database user"
}
variable "ssh_authorized_keys" {
description = "SSH authorized public keys for the instance"
type = string
}
variable "run_koala" {
type = bool
description = "Whether to run the Koala bot"
}
variable "bot_owner" {
type = string
description = "The owner of the bot"
}
variable "discord_token" {
type = string
description = "The bot token"
}
variable "encrypted" {
type = bool
description = "Whether to encrypt the database"
}
variable "gmail_email" {
type = string
description = "The Gmail email"
}
variable "gmail_password" {
type = string
description = "The Gmail password"
}
variable "sqlite_key" {
type = string
description = "The SQLite key"
}
variable "twitch_secret" {
type = string
description = "The Twitch secret"
}
variable "twitch_token" {
type = string
description = "The Twitch token"
}