generated from snowplow-devops/terraform-module-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvariables.tf
52 lines (43 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 "user_provided_id" {
description = "Optional ID provided by user as an input to each terraform module. Intended to tie events together across modules, infrastructure and apps when used consistently."
type = string
}
variable "cloud" {
description = "The cloud the services are running in."
type = string
}
variable "region" {
description = "The region the services are running in."
type = string
}
variable "module_name" {
description = "The name of the terraform module."
type = string
}
variable "module_version" {
description = "The version of the terraform module (e.g. 1.0.0)."
type = string
}
variable "app_name" {
description = "The name of the application."
type = string
}
variable "app_version" {
description = "The version of the application (e.g. 1.0.0)."
type = string
}
variable "app_name_override_1" {
description = "An application name override for modules that deploy N micro-services."
type = string
default = ""
}
variable "app_name_override_2" {
description = "An application name override for modules that deploy N micro-services."
type = string
default = ""
}
variable "app_name_override_3" {
description = "An application name override for modules that deploy N micro-services."
type = string
default = ""
}