-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
57 lines (47 loc) · 1.25 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
variable "project_name" {
type = string
description = "The display name of the Firebase project"
}
variable "project_id" {
type = string
description = "The GCP project to deploy resources"
}
variable "billing_account" {
type = string
sensitive = true
description = "The billing account to associate with the project"
}
variable "region" {
default = "asia-northeast1"
type = string
description = "The region to deploy resources"
}
variable "zone" {
default = "asia-northeast1-a"
type = string
description = "The zone to deploy resources"
}
variable "firebase_app_name" {
type = string
description = "The display name of the Firebase app"
}
variable "firebase_bucket_name" {
type = string
description = "The name of the Firebase storage bucket"
}
variable "firebase_app_site_id" {
type = string
description = "The ID of the Firebase app's site"
}
variable "backend_service_name" {
type = string
description = "The name of the backend service"
}
variable "github_repo_name" {
description = "The name of the GitHub repository"
type = string
}
variable "github_owner" {
description = "The owner of the GitHub repository"
type = string
}