-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
42 lines (33 loc) · 1.03 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
##########################################
# 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 "humanitec_org_id" {
type = string
description = "ID of the Humanitec Organization to associate resources with."
}
##########################################
# OPTIONAL INPUTS
##########################################
variable "environment" {
type = string
description = "The environment to associate the reference architecture with."
default = null
}
variable "environment_type" {
type = string
description = "The environment type to associate the reference architecture with."
default = "development"
}
variable "humanitec_prefix" {
type = string
description = "A prefix that will be attached to all IDs created in Humanitec."
default = "htc-ref-arch-"
}