-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
61 lines (50 loc) · 1.65 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
# ----------------------------------------------------------------
# AWS provider variables
# ----------------------------------------------------------------
variable "aws_access_key" {
description = "AWS Access Key for AWS provider"
type = string
sensitive = true
}
variable "aws_secret_key" {
description = "AWS Secret Key for AWS provider"
type = string
sensitive = true
}
variable "base_global_provider_region" {
description = "AWS region in which to create the resources from base_global"
type = string
default = "us-east-2"
}
# ----------------------------------------------------------------
# AWS variables
# ----------------------------------------------------------------
variable "ssh_public_key" {
description = "Public key data in 'Authorized Keys' format to allow SSH-ing into the instances"
type = string
}
# ----------------------------------------------------------------
# DDNS variables
# ----------------------------------------------------------------
variable "duckdns_token" {
description = "Duck DNS token"
type = string
sensitive = true
default = null
}
# ----------------------------------------------------------------
# Discord variables
# ----------------------------------------------------------------
variable "discord_app_id" {
default = "Discord App ID for Discord API usage"
type = string
}
variable "discord_app_public_key" {
description = "Discord App public key for webhook validation"
type = string
}
variable "discord_bot_token" {
description = "Discord App bot token for Discord API auth"
type = string
sensitive = true
}