-
Notifications
You must be signed in to change notification settings - Fork 0
/
example.tfvars
42 lines (37 loc) · 1.32 KB
/
example.tfvars
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
###############################################################################
## Google Cloud config options
# gcp_cred is a json formated service account secret
gcp_cred = "terraform-admin.json"
gcp_region = "us-central1"
gcp_project = "brockp-terraform-admin"
###############################################################################
## SSL Certificate and key paths
ssl_cert = {
cert = "ssl/rajrao.gcp.arc-ts.umich.edu.cert"
key = "ssl/rajrao.gcp.arc-ts.umich.edu.key"
}
###############################################################################
## DNS Settings
enable_dns = false
dns_zone = "gcp-arcts-zone"
dns_name = "brockp.gcp.arc-ts.umich.edu."
###############################################################################
## Globus OAuth Settings
#
# Callback needs to match that in the globus config
# client_id and secrete are from globus.org
globus_oauth = {
callback_url = "https://brockp.gcp.arc-ts.umich.edu/hub/oauth_callback"
client_id = "<CLIENTID>"
client_secret = "<CLIENT SECRET>"
identity_provider = "umich.edu"
}
###############################################################################
## Google Container Engine (GKE) Options
gke_options = {
name = "arcts-kube"
initial_node_count = 3
preemptible = false
disk_size_gb = 10
machine_type = "n1-standard-1"
}