-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathvariables.tf
61 lines (50 loc) · 1.81 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
53
54
55
56
57
58
59
60
61
variable "globalaccount" {
type = string
}
variable "subaccount_domain_prefix" {
type = string
description = "The prefix used for the subaccount domain"
default = "TechEd2024-TF"
}
variable "subaccount_name" {
type = string
description = "The subaccount name."
default = "TechEd2024-experiments"
}
variable "region" {
type = string
description = "The region where the subaccount shall be created in."
default = "us10"
}
variable "build_code_admins" {
type = list(string)
description = "Defines the colleagues who are admins for SAP Build Code."
}
variable "build_code_developers" {
type = list(string)
description = "Defines the colleagues who are developers for SAP Build Code."
}
variable "application_studio_admins" {
type = list(string)
description = "Defines the colleagues who are admins for SAP Business Application Studio"
}
variable "application_studio_developers" {
type = list(string)
description = "Defines the colleagues who are developers for SAP Business Application Studio"
}
variable "application_studio_extension_deployer" {
type = list(string)
description = "Defines the colleagues who are extension deployers for SAP Business Application Studio"
}
variable "process_automation_admins" {
type = list(string)
description = "Defines the users who have the role of ProcessAutomationAdmin in SAP Build Process Automation"
}
variable "process_automation_developers" {
type = list(string)
description = "Defines the users who have the role of ProcessAutomationDeveloper in SAP Build Process Automation"
}
variable "process_automation_participants" {
type = list(string)
description = "Defines the users who have the role of ProcessAutomationParticipant in SAP Build Process Automation"
}