-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathtfvars.example
78 lines (78 loc) · 1.76 KB
/
tfvars.example
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
project_id = "<my-project>"
# Region set to us-central1 to take advantage of free tier
region = "us-central1"
zones = ["us-central1-a"]
cluster_name = "kluster"
domain = "<my.dom.ain>"
domain_filter = "<my.dom.ain>"
email = "<[email protected]>"
# Set run_post_install = true after first run
run_post_install = false
# Select your dns provider.
# Find more in externaldns helm chart https://github.com/bitnami/charts/blob/master/bitnami/external-dns
dns_auth = [
{
name = "provider"
value = "google"
}
]
# OIDC Configuration
oidc_config = [
{
name = "authenticate.idp.provider"
value = "google"
},
{
name = "authenticate.idp.clientID"
value = "<[project_id]-[hash].apps.googleusercontent.com>"
},
{
name = "authenticate.idp.clientSecret"
value = "<mysecret>"
},
{
name = "authenticate.idp.url"
value = "https://accounts.google.com"
}
]
/*
# If use another DNS provider, replace dns_auth above.
dns_auth = [
{
name = "provider"
value = "cloudflare"
},
{
name = "cloudflare.email"
value = "<[email protected]>"
},
{
name = "cloudflare.apiToken"
value = "<mycloudflareapitoken>"
},
{
name = "cloudflare.apiKey"
value = "<mycloudflareapikey>"
}
]
dns_auth = [
{
name = "provider"
value = "digitalocean"
},
{
name = "digitalocean.apiToken"
value = "<mydigitaloceantoken>"
}
]
dns_auth = [
{
name = "provider"
value = "linode"
},
{
name = "linode.apiToken"
value = "<mylinodetoken>"
}
]
*/