This repository has been archived by the owner on May 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
109 lines (90 loc) · 2.16 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
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
99
100
101
102
103
104
105
106
107
108
109
variable "project_name" {
description = "Name of the project"
type = string
}
variable "project_number" {
description = "Project Number"
type = number
}
variable "region" {
description = "Deploy region"
type = string
default = "us-central1"
}
variable "zone" {
description = "Deploy Zone"
type = string
default = "us-central1-a"
}
variable "irs_ui_name" {
description = "Consignar Image Name"
type = string
default = "irs-ui-internal"
}
variable "irs_api_name" {
description = "Consignar REST API Image Name"
type = string
default = "irs-api-internal"
}
variable "irs_api_port" {
description = "Port number the IRS API listens on"
type = number
default = 50007
}
variable "irs_ui_port" {
description = "Port number the IRS UI listens on"
type = number
default = 8080
}
variable "github_repository_uri" {
description = "GitHub Repository URI"
type = string
}
variable "github_app_installation_id" {
description = "GitHub App installation id"
type = number
}
variable "github_client_secret_data" {
description = "GitHub Client Secret Data"
}
variable "db_password" {
description = "Database Password"
type = string
}
variable "machine_type" {
description = "DB Machine Type"
type = string
default = "e2-micro"
}
variable "repository_id" {
description = "Repository ID"
type = string
}
variable "consignar_web_domain" {
description = "Consignar Web Domain"
type = string
default = "web.consignar.pt"
}
variable "consignar_rest_domain" {
description = "Consignar REST Domain"
type = string
default = "rest.consignar.pt"
}
variable "consignar_domain" {
description = "Consignar Main Domain"
type = string
default = "consignar.pt"
}
variable "consignar_private_key_path" {
description = "Consignar Private Key Path"
type = string
}
variable "consignar_certificate_path" {
description = "Consignar Certificate Path"
type = string
}
variable "ip_cidr_range" {
description = "IP Range"
type = string
default = "10.7.0.0/16"
}