-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
52 lines (43 loc) · 1 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
# Base variables
variable "ddos_name" {
type = string
description = "name of resources"
}
variable "name" {
type = string
description = "name of resources"
}
variable "location" {
type = string
description = "Location of the resources"
}
variable "resource_group_name" {
type = string
description = "static rsg provided by LA lab"
}
# Tag variables
variable "tag_buildby" {
type = string
description = "Name of the builder."
default = "Mark Railton"
}
variable "tag_buildticket" {
type = string
description = "Ticket Number for the build"
default = "ticket123"
}
variable "tag_builddate" {
type = string
description = "Date in ISO-8601 format (yyyymmdd)."
default = "20210119"
}
variable "environment" {
type = string
description = "Prod,QA,STG,DEV,etc."
default = "DEV"
}
variable "publisher_email" {
type = string
description = "Publisher email"
default = "[email protected]"
}