forked from gruntwork-io/terraform-aws-utilities
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
20 lines (18 loc) · 872 Bytes
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
variable "python2_pex_path_parts" {
description = "Parts of the path (folders and files names) to the PEX executable for python 2 as a list of strings."
type = list(string)
# Example:
# python2_pex_path_parts = ["foo", "bar", "baz.txt"] => outputs "foo/bar/baz.txt" on Linux
}
variable "python3_pex_path_parts" {
description = "Parts of the path (folders and files names) to the PEX executable for python 3 as a list of strings."
type = list(string)
# Example:
# python3_pex_path_parts = ["foo", "bar", "baz.txt"] => outputs "foo/bar/baz.txt" on Linux
}
variable "pex_module_path_parts" {
description = "Parts of the path (folders and file names) to the python package directory housing the pex file."
type = list(string)
# Example:
# pex_module_path_parts = ["foo", "bar", "baz.txt"] => outputs "foo/bar/baz.txt" on Linux
}