-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
52 lines (45 loc) · 1.24 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
variable "project" {
description = "Your GCP Project ID"
default = "musicaly-project"
type = string
}
variable "region" {
description = "Your project region"
default = "us-east1"
type = string
}
variable "zone" {
description = "Your project zone"
default = "us-east1-b"
type = string
}
variable "network" {
description = "Network for your instance/cluster"
default = "default"
type = string
}
variable "vm_image" {
description = "Image for you VM"
default = "ubuntu-os-cloud/ubuntu-2004-lts"
type = string
}
variable "storage_class" {
description = "Storage class type for your bucket"
default = "STANDARD"
type = string
}
variable "staging_bigquery_dataset" {
description = "Storage class type for your bucket. Check official docs for more info."
default = "musicaly_staging"
type = string
}
variable "production_bigquery_dataset" {
description = "Storage class type for your bucket. Check official docs for more info."
default = "musicaly_production"
type = string
}
variable "bucket" {
description = "The name of your bucket. This should be unique across GCP"
default = "musicaly_data_lake"
type = string
}