generated from cloudposse/terraform-example-module
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathvariables.tf
52 lines (44 loc) · 1.34 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
variable "top_level_workspace" {
type = string
description = "Name of the top-level configuration workspace in Terraform Cloud"
default = "tfc-config"
}
variable "config_auto_apply" {
type = bool
description = "Controls Terraform Cloud workspace auto-apply feature"
default = true
}
variable "config_file_path" {
type = string
description = "Relative path to YAML config files"
default = null
}
variable "config_file_pattern" {
type = string
description = "File pattern used to locate configuration files"
default = "*.yaml"
}
variable "organization" {
type = string
description = "Name of the organization."
}
variable "projects_path" {
type = string
description = "Project directory path relative to the repository root"
default = "projects"
}
variable "tfc_project_path" {
type = string
description = "Name of the working directory where the top-level Terraform Cloud project resides (e.g. within `projects_path`)."
default = "tfc"
}
variable "terraform_version" {
type = string
description = "The version of Terraform to use for this workspace. Defaults to the latest available version."
default = null
}
variable "vcs_repo" {
type = map(string)
description = "The VCS repository to configure."
default = {}
}