-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
98 lines (83 loc) · 2.48 KB
/
variables.tf
File metadata and controls
98 lines (83 loc) · 2.48 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
variable "github_owner" {
description = "GitHub organization that owns the repositories allowed to publish packages."
type = string
default = "libops"
}
variable "github_repositories" {
description = "Full GitHub repository names allowed to impersonate the publishing service account."
type = set(string)
default = [
"libops/sitectl",
"libops/sitectl-drupal",
"libops/sitectl-isle",
"libops/sitectl-libops",
]
}
variable "github_actors" {
description = "Optional GitHub actors allowed to use the provider. Leave empty to allow any actor from the approved repositories."
type = set(string)
default = []
}
variable "project_name" {
description = "Google Cloud project display name."
type = string
default = "libops-linux-packages"
}
variable "project_id" {
description = "Google Cloud project ID."
type = string
default = "libops-linux-packages"
}
variable "org_id" {
description = "Google Cloud organization ID."
type = string
}
variable "billing_account" {
description = "Google Cloud billing account ID."
type = string
}
variable "region" {
description = "Default Google Cloud region."
type = string
default = "us-east5"
}
variable "bucket_name" {
description = "Name of the public package bucket."
type = string
default = "libops-linux-packages"
}
variable "bucket_location" {
description = "Bucket location."
type = string
default = "US"
}
variable "package_domain" {
description = "Fully qualified domain name that will serve the package repository."
type = string
default = "packages.libops.io"
}
variable "dns_zone_name" {
description = "Cloud DNS managed zone name."
type = string
default = "packages-libops-io"
}
variable "dns_zone_dns_name" {
description = "DNS suffix managed by the zone, with trailing dot."
type = string
default = "packages.libops.io."
}
variable "aptly_gpg_key_id" {
description = "GPG key ID Aptly uses to sign the published repository."
type = string
default = ""
}
variable "aptly_gpg_private_key_secret_id" {
description = "Secret Manager secret ID that stores the armored Aptly private key."
type = string
default = "aptly-gpg-private-key"
}
variable "aptly_gpg_passphrase_secret_id" {
description = "Secret Manager secret ID that stores the Aptly GPG key passphrase."
type = string
default = "aptly-gpg-passphrase"
}