-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvars.tf
128 lines (104 loc) · 1.99 KB
/
vars.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
variable "aws_region" {
default = "eu-north-1"
}
variable "aws_access_key_id" {
sensitive = true
}
variable "aws_secret_access_key" {
sensitive = true
}
variable "ecr_repository_name" {
default = "spahi4-photo-app"
}
variable "ec2_instance_type" {
default = {
development = "t3.micro"
production = "t3.micro"
}
}
variable "upload_enabled" {
default = true
}
variable "db_password" {
sensitive = true
}
variable "db_app_username" {
sensitive = true
}
variable "db_app_password" {
sensitive = true
}
variable "db_instance_name" {
default = "photo-app-pg"
}
variable "db_app_name" {
default = {
development = "photo_app_dev"
production = "photo_app_prod"
}
}
variable "resource_prefix" {
default = {
development = ""
production = "prod-"
}
}
variable "deployer_public_key" {
sensitive = true
}
variable "s3_bucket_terraform" {}
variable "s3_bucket_storage" {
default = {
development = "spahi4-photo-images-dev"
production = "spahi4-photo-images-prod"
}
}
variable "git_sha" {}
variable "cloudflare_account_id" {
sensitive = true
}
variable "cloudflare_api_token" {
sensitive = true
}
variable "root_domain" {
default = "spahi4.me"
}
variable "web_domain" {
default = {
development = "dev.spahi4.me"
production = "spahi4.me"
}
}
variable "api_domain" {
default = {
development = "api-dev.spahi4.me"
production = "api.spahi4.me"
}
}
variable "jwt_public_key" {
sensitive = true
}
variable "jwt_private_key" {
sensitive = true
}
variable "ssl_cert" {
sensitive = true
}
variable "ssl_key" {
sensitive = true
}
variable "google_refresh_token" {
sensitive = true
}
variable "google_credentials_web_json" {
description = "JSON string of the google_credentials_web"
type = string
default = "{}"
sensitive = true
}
variable "google_credentials_installed_json" {
description = "JSON string of the google_credentials_web"
type = string
default = "{}"
sensitive = true
}