Files
homelab/cloudflare/services/services.tf

35 lines
803 B
HCL

locals {
services = {
homer = {
subdomain = "home"
service = "http://192.168.0.101:8888"
policy = "allow_myself_and_family"
},
gitea = {
subdomain = "git"
service = "http://192.168.0.101:3000"
policy = "allow_everyone"
}
miniflux = {
subdomain = "news"
service = "http://192.168.0.101:8883"
policy = "allow_myself"
}
linkding = {
subdomain = "links"
service = "http://192.168.0.101:9999"
policy = "allow_myself"
}
grafana = {
subdomain = "grafana"
service = "http://192.168.0.101:3333"
policy = "allow_myself"
}
syncthing = {
subdomain = "sync"
service = "http://192.168.0.101:8384"
policy = "allow_myself"
}
}
}