-
Notifications
You must be signed in to change notification settings - Fork 33
/
variables.tf
54 lines (45 loc) · 1.27 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
variable "target_subscription_id" {
type = string
description = "Id of the subscription to run tests in."
}
variable "identity_resource_group_name" {
type = string
description = "Name of the resource group to create the identities in."
}
variable "github_repository_owner" {
type = string
description = "Owner of the GitHub repositories."
default = "Azure"
}
variable "github_repository_name" {
type = string
description = "Name of the GitHub repository."
}
variable "github_repository_environment_name" {
type = string
description = "Branch of the GitHub repository."
default = "test"
}
variable "github_core_team_name" {
type = string
description = "Name of the GitHub core team."
default = "avm-core-team-technical-terraform"
}
variable "github_owner_team_name" {
type = string
description = "Name of the GitHub owner team."
}
variable "github_contributor_team_name" {
type = string
description = "Name of the GitHub owner team."
}
variable "location" {
type = string
description = "Location of the resources."
default = "eastus2"
}
variable "manage_github_environment" {
type = bool
description = "Whether to manage the environment."
default = false
}