-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
45 lines (39 loc) · 1.31 KB
/
variables.tf
File metadata and controls
45 lines (39 loc) · 1.31 KB
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
variable "execution_mode" {
description = "Controls whether Terraform writes manifests to disk (local) or only renders them (ci)"
type = string
default = "local"
validation {
condition = contains(["local", "ci"], var.execution_mode)
error_message = "execution_mode must be 'local' or 'ci'."
}
}
variable "input_file_path" {
description = "The absolute path to the input file. If it doesn't exist, the module will not do anything"
type = string
nullable = false
default = ""
}
variable "client_id" {
description = "The OAuth client ID. If it is not provided, the module will not do anything"
type = string
nullable = false
default = ""
}
variable "client_secret" {
description = "The OAuth client secret. If it is not provided, the module will not do anything"
type = string
nullable = false
default = ""
}
variable "base_url" {
description = "The base URL. If it is not provided, the module will not do anything"
type = string
nullable = false
default = ""
}
variable "output_file_path" {
description = "The absolute path to the output file. If it is not provided, the module will not do anything"
type = string
nullable = false
default = ""
}