-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvariable.tf
44 lines (37 loc) · 916 Bytes
/
variable.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
variable domain_name {
type = string
default = "example.com"
description = "The domain name of your website"
}
variable org_id {
type = string
description = "The GCP id of your organization"
}
variable project_id {
type = string
default = "sample-airbyte-metabase-from-terraform"
description = "The project ID of your GCP project"
}
variable region {
type = string
default = "us-west1"
description = "The region of your GCP project"
}
variable zone {
type = string
default = "us-west1-b"
description = "The region of your GCP project"
}
variable vpc_name {
type = string
default = "my-custom-vpc"
description = "Name of custom VPC Network"
}
variable support_email {
type = string
description = "The support email for the project"
}
# variable oauth2_client_id {
# type = string
# description = "OAuth2 client ID for IAP"
# }