-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathvariables.tf
45 lines (37 loc) · 960 Bytes
/
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
variable "prefix" {
description = "Prefix for all resources"
type = string
}
variable "resource_packs_gcp_rev" {
type = string
default = "ref/heads/main"
}
variable "resource_packs_gcp_url" {
type = string
default = "https://github.com/humanitec-architecture/resource-packs-gcp.git"
}
variable "append_logs_to_error" {
description = "Append Terraform logs to error messages."
type = bool
default = false
}
variable "driver_account" {
description = "The ID of the Resource Account which should be used."
type = string
}
variable "project" {
type = string
}
variable "region" {
description = "GCP region"
type = string
}
variable "name" {
type = string
description = "Resource name (can contain placeholders like $${context.app.id})"
default = ""
}
variable "instance_resource" {
description = "Identifier of the PostgreSQL instance resource."
type = string
}