-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
49 lines (46 loc) · 1.3 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
variable "teamid" {
description = "Name of the team/group e.g. devops, dataengineering. Should not be changed after running 'tf apply'"
type = string
}
variable "prjid" {
description = "Name of the project/stack e.g: mystack, nifieks, demoaci. Should not be changed after running 'tf apply'"
type = string
}
variable "applications_config" {
description = "Application configuration"
type = map(any)
}
variable "extra_tags" {
description = "Additional tags to associate"
type = map(string)
default = {}
}
variable "password" {
type = string
default = ""
description = "A password for the service principal."
}
#
#variable "end_date" {
# type = string
# default = null
# description = "The relative duration or RFC3339 date after which the password expire."
#}
#
#variable "years" {
# type = number
# default = 10 # null
# description = "The number of years after which the password expire. Either this or `end_date` should be specified, but not both."
#}
#
#variable "role" {
# type = string
# default = ""
# description = "The name of a role for the service principal."
#}
#
#variable "scopes" {
# type = list(string)
# default = []
# description = "A list of scopes the role assignment applies to."
#}