-
Notifications
You must be signed in to change notification settings - Fork 3
/
variables.tf
35 lines (31 loc) · 886 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
variable "TF_VAR_GITHUB_TOKEN" {}
variable "email" {}
variable "hostname" {}
variable "slack_webhook" {}
resource "tfe_variable" "pet_name_length1" {
key = "pet_name_length1"
value = "5"
category = "terraform"
workspace_id = tfe_workspace.noodles_the_dog.id
}
resource "tfe_variable" "chosen_separator1" {
key = "chosen_separator1"
value = " ... "
description = "stilasdfl testing"
category = "terraform"
workspace_id = tfe_workspace.noodles_the_dog.id
}
resource "tfe_variable" "separate1" {
key = "separate1"
value = "value"
description = "stiasdfll testing"
category = "terraform"
workspace_id = tfe_workspace.noodles_the_dog.id
}
resource "tfe_variable" "prefix1" {
key = "TF_VAR_prefix1"
value = "madam"
description = "lasasdft test"
category = "env"
workspace_id = tfe_workspace.noodles_the_dog.id
}