-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
84 lines (73 loc) · 1.46 KB
/
variables.tf
File metadata and controls
84 lines (73 loc) · 1.46 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
variable environment {
type = string
}
variable "administrator_email" {
type = string
description = "Email of the platform administrator"
}
variable "tf_sa_email" {
type = string
description = "Email of the terraform SA"
}
variable "organization_id" {
type = string
description = "Id of the organization"
}
variable "bucket_region" {
type = string
}
variable "compute_region" {
type = string
}
variable "billing_account" {
type = string
}
variable "folder_id" {
type = string
}
variable "all_user_iam_true_tag_value_id" {
type = string
}
variable "db_username" {
type = string
}
variable "db_password" {
type = string
}
variable "database_name" {
type = string
}
variable "public_deployment" {
type = bool
default = false
}
variable "cloudrun_config" {
type = object({
max_concurrency = number
timeout = string
min_instance_count = number
max_instance_count = number
cpu_limits = number
memory_limits = string
docker_image = string
env_variables = map(string)
})
}
# CICD Github related info
variable "repo_deploy_ref" {
type = string
default = "refs/heads/deploy_dev"
}
variable "wif_subject" {
type = string
}
variable "github_repository_name" {
type = string
}
variable "github_repository_owner" {
type = string
}
variable "debug_wif" {
type = bool
default = true
}