-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
41 lines (34 loc) · 1.15 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
################################################################################
# Monitoring
################################################################################
variable "dynatrace_url" {
description = "URL of the Dynatrace endpoint."
type = string
default = "https://*******.live.dynatrace.com"
}
################################################################################
# Tagging
################################################################################
variable "custom_tags" {
description = "A map of tags to add to all resources."
type = map(string)
default = {}
}
################################################################################
# Common variables
################################################################################
variable "app_name" {
description = "Name of the application."
type = string
default = "demoapp"
}
variable "app_env" {
description = "Environment name of the application."
type = string
default = "test"
}
variable "app_owner" {
description = "Owner of the application."
type = string
default = "me"
}