-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.auto.tfvars.example
36 lines (32 loc) · 1.07 KB
/
variables.auto.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
TAILSCALE_TAILNET = "[email protected]"
# https://login.tailscale.com/admin/settings/keys
# Temp API key. 90 days since 25/04/2023
TAILSCALE_API_KEY = "tskey-api-yourapikeyhere"
TAILSCALE_DNS_SRV = "server-public-insider-your-dns-server"
TAILSCALE_ACL = {
# https://tailscale.com/kb/1018/acls/#tag-owners
"tagOwners": {
"tag:server": ["[email protected]"],
"tag:laptop": ["[email protected]"],
"tag:phone": ["[email protected]"],
"tag:outsider": ["[email protected]"],
"tag:insider": ["[email protected]"],
"tag:public": ["[email protected]"],
"tag:private": ["[email protected]"],
},
# https://tailscale.com/kb/1068/acl-tags/#acls
"acls" : [
# Match absolutely everything.
# {"action": "accept", "src": ["*"], "dst": ["*:*"]},
{
"action": "accept",
"src": ["tag:insider"],
"dst": ["tag:public:*", "tag:private:*"],
},
{
"action": "accept",
"src": ["tag:outsider"],
"dst": ["tag:public:443", "tag:public:80", "tag:public:53"],
},
],
}