forked from belajarqywok/discord_alerting_system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
56 lines (48 loc) · 1.17 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
# Region
variable "region" {
type = string
default = "asia-southeast2"
description = "Region <type: String>"
}
# Zone
variable "zone" {
type = string
default = "asia-southeast2-a"
description = "Zone <type: String>"
}
# Project ID
variable "project_id" {
type = string
default = "petdoc-capstone-project"
description = "Project ID <type: String>"
}
# Discord Bot Name
variable "discord_bot_name" {
type = string
default = "Mamank Garox"
description = "Discord Bot Name <type: String>"
}
# Discord Bot Avatar
variable "discord_bot_avatar" {
type = string
default = "https://qph.cf2.quoracdn.net/main-qimg-c2108cee7b7917f80d8f6182a7a0a8ee-lq"
description = "Discord Bot Avatar <type: String>"
}
# Discord ID (SENSITIVE)
variable "discord_id" {
type = string
sensitive = true
description = "Discord ID <type: String>"
}
# Discord Token (SENSITIVE)
variable "discord_token" {
type = string
sensitive = true
description = "Discord Token <type: String>"
}
# Discord Team Tag
variable "discord_team_tag" {
type = string
default = "@everyone \n@Cloud Engineer \n@ML Engineer \n@Mobile Engineer "
description = "Discord Team Tag <type: String>"
}