-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
43 lines (36 loc) · 937 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
41
42
43
variable "key" {
type = string
description = "Name of the variable"
}
variable "value" {
type = string
description = "Value of the variable"
}
variable "category" {
type = string
description = "Whether this is a Terraform or environment variable"
}
variable "description" {
type = string
default = null
description = "Description of the variable"
}
variable "description_suffix" {
type = string
default = ""
description = "Wheter to add a suffix to the description of the variable"
}
variable "hcl" {
type = bool
default = false
description = "Whether to evaluate the value of the variable as a string of HCL code"
}
variable "sensitive" {
type = bool
default = false
description = "Whether the value is sensitive"
}
variable "workspace_id" {
type = string
description = "ID of the workspace that owns the variable"
}