Install tailscale

Install, not configure
This commit is contained in:
Jake Howard
2024-02-01 19:41:47 +00:00
parent 29cac09b48
commit 02847355a7
6 changed files with 30 additions and 1 deletions

View File

@ -91,6 +91,15 @@ resource "linode_firewall" "casey" {
ipv4 = ["0.0.0.0/0"]
ipv6 = ["::/0"]
}
inbound {
label = "allow-inbound-tailscale"
action = "ACCEPT"
protocol = "UDP"
ports = "41641"
ipv4 = ["0.0.0.0/0"]
ipv6 = ["::/0"]
}
}
resource "linode_rdns" "casey_reverse_ipv4" {

View File

@ -4,7 +4,8 @@ module "walker_firewall" {
description = "walker"
ports = [
"80/tcp",
"443/tcp"
"443/tcp",
"41641/udp"
]
}