-
Notifications
You must be signed in to change notification settings - Fork 65
/
variables.tf
53 lines (43 loc) · 1.2 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
##########################################
# REQUIRED INPUTS
##########################################
variable "project_id" {
type = string
description = "GCP Project ID to provision resources in."
}
variable "region" {
type = string
description = "GCP Region to provision resources in."
}
variable "gar_repository_region" {
type = string
description = "Region of the Google Artifact Registry repository,"
}
variable "gar_repository_id" {
type = string
description = "Google Artifact Registry repository ID."
default = "htc-ref-arch"
}
##########################################
# OPTIONAL INPUTS
##########################################
variable "humanitec_prefix" {
type = string
description = "A prefix that will be attached to all IDs created in Humanitec."
default = "htc-ref-arch-"
}
variable "with_backstage" {
description = "Deploy Backstage"
type = bool
default = false
}
variable "github_org_id" {
description = "GitHub org id (required for Backstage)"
type = string
default = null
}
variable "humanitec_org_id" {
description = "Humanitec Organization ID."
type = string
default = null
}