Open the right ports so web traffic will flow

This commit is contained in:
Jake Howard 2022-01-11 09:08:23 +00:00
parent cf0e718bfb
commit ceb62cc0c8
Signed by: jake
GPG key ID: 57AFB45680EDD477

View file

@ -40,4 +40,22 @@ resource "linode_firewall" "decker" {
ipv4 = ["0.0.0.0/0"]
ipv6 = ["::/0"]
}
inbound {
label = "allow-inbound-https"
action = "ACCEPT"
protocol = "TCP"
ports = "443"
ipv4 = ["0.0.0.0/0"]
ipv6 = ["::/0"]
}
inbound {
label = "allow-inbound-http"
action = "ACCEPT"
protocol = "TCP"
ports = "80"
ipv4 = ["0.0.0.0/0"]
ipv6 = ["::/0"]
}
}