-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
60 lines (49 loc) · 1.53 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
variable "project_id" {
type = string
description = "The project id for which the new repository shall be created."
}
variable "org_id" {
type = string
description = "The organization id under which the project was created."
}
variable "domain" {
type = string
description = "The domain used for templating."
}
variable "billing_account" {
type = string
description = "The billing account id that will be used to create further projects."
}
variable "name" {
type = string
description = "The name of the repository to create"
}
variable "description" {
type = string
description = "The description of the repository to create"
default = ""
}
variable "bucket" {
type = string
description = "The full qualified name of the bucket to store the terraform states"
}
variable "service_account_email" {
type = string
description = "The service account that github actions will use within the repository"
}
variable "github_token" {
type = string
description = "The github token to authenticate against the Github API"
}
variable "github_owner" {
type = string
description = "The github organization or user under which the repository will be created"
}
variable "github_template_owner" {
type = string
description = "The github organization or user that hosts the template for this repository"
}
variable "github_template_repository" {
type = string
description = "The github repository name that hosts the templates"
}