-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvariables.tf
40 lines (33 loc) · 956 Bytes
/
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
variable "hostname" {
type = string
default = "app.terraform.io"
description = "The server that TFE is running on"
}
variable "TFE_TOKEN" {
type = string
description = "Your TFE Team auth token"
}
variable "organization_name" {
default = "hashicorp_test"
description = "The name for the TFE organization"
}
variable "organization_email" {
default = "test@hashicorp.com"
description = "The email address for the TFE organization"
}
variable "oauth_token" {
type = string
description = "A personal access token from GitHub (https://github.com/settings/tokens/new)"
}
variable "AWS_ACCESS_KEY_ID" {
type = string
description = "For AWS auth, AWS_ACCESS_KEY_ID"
}
variable "AWS_SECRET_ACCESS_KEY" {
type = string
description = "For AWS auth, AWS_SECRET_ACCESS_KEY"
}
variable "GCP_CREDENTIALS" {
type = string
description = "Your whole JSON credentials contents"
}