-
Notifications
You must be signed in to change notification settings - Fork 14
/
variables.tf
45 lines (36 loc) · 1.24 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
variable "initials" {
description = "Enter your initials to include in URLs. Lowercase only!!!"
default = ""
}
variable "location" {
description = "The Azure location where all resources in this example should be created, to find your nearest run `az account list-locations -o table`"
default = ""
}
variable "appname" {
description = "The name of the app to display in Contrast TeamServer. Also used for DNS, so no spaces please!"
default = "spring-petclinic"
}
variable "servername" {
description = "The name of the server to display in Contrast TeamServer."
default = "spring-petclinic-docker"
}
variable "environment" {
description = "The Contrast environment for the app. Valid values: development, qa or production"
default = ""
}
variable "session_metadata" {
description = "See https://docs.contrastsecurity.com/user-vulnerableapps.html#session"
default = ""
}
variable "python_binary" {
description = "Path to local Python binary"
default = "python3"
}
variable "apptags" {
description = "Tags to be associated with the app in Contrast TeamServer."
default = ""
}
variable "servertags" {
description = "Tags to be associated with the server in Contrast TeamServer."
default = ""
}