-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathvariables.tf
More file actions
105 lines (82 loc) · 1.53 KB
/
Copy pathvariables.tf
File metadata and controls
105 lines (82 loc) · 1.53 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
variable "domain_name" {
type = string
}
variable "organization_name" {
type = string
}
variable "repository_name" {
type = string
}
variable "repository_files" {
type = map(object({
content = string
}))
}
variable "template_repository_files" {
type = map(object({
content = string
}))
}
variable "environments" {
type = map(string)
}
variable "managed_identity_client_ids" {
type = map(string)
}
variable "azure_tenant_id" {
type = string
}
variable "azure_subscription_id" {
type = string
}
variable "backend_azure_resource_group_name" {
type = string
}
variable "backend_azure_storage_account_name" {
type = string
}
variable "backend_azure_storage_account_container_name" {
type = string
}
variable "approvers" {
type = list(string)
}
variable "create_team" {
type = bool
}
variable "existing_team_name" {
type = string
}
variable "team_name" {
type = string
}
variable "use_template_repository" {
type = bool
}
variable "repository_name_templates" {
type = string
}
variable "workflows" {
type = map(object({
workflow_file_name = string
environment_user_assigned_managed_identity_mappings = list(object({
environment_key = string
user_assigned_managed_identity_key = string
}))
}))
}
variable "runner_group_name" {
type = string
}
variable "default_runner_group_name" {
type = string
}
variable "use_runner_group" {
type = bool
}
variable "use_self_hosted_runners" {
type = bool
}
variable "create_branch_policies" {
type = bool
}