-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
41 lines (35 loc) · 1.01 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
variable "aws_access_key_id" {
type = string
default = null
description = "The AWS access key to authenticate with Amazon Web Services"
}
variable "aws_secret_access_key" {
type = string
default = null
description = "The AWS secret key to authenticate with Amazon Web Services"
}
variable "github_token" {
type = string
default = null
description = "The token used to authenticate with GitHub"
}
variable "hcloud_token_dev" {
type = string
default = null
description = "The token used to authenticate with Hetzner Cloud"
}
variable "hcloud_token_stage" {
type = string
default = null
description = "The token used to authenticate with Hetzner Cloud"
}
variable "hcloud_token_prod" {
type = string
default = null
description = "The token used to authenticate with Hetzner Cloud"
}
variable "slack_webhook_url" {
type = string
default = null
description = "The destination URL used to send Slack notifications"
}