nebula/znc.tf

27 lines
365 B
Terraform
Raw Normal View History

2018-08-23 06:32:32 +00:00
module "znc" {
2021-03-20 07:39:19 +00:00
source = "./modules/container"
2018-08-23 06:32:32 +00:00
image = "znc:latest"
name = "znc"
2021-03-20 07:39:19 +00:00
web = {
2018-08-23 06:32:32 +00:00
expose = "false"
host = ""
}
2021-03-20 07:39:19 +00:00
volumes = [
{
container_path = "/znc-data"
host_path = "/mnt/xwing/config/znc"
},
]
2018-08-23 06:32:32 +00:00
2021-03-20 07:39:19 +00:00
ports = [
{
internal = 6697
external = 6697
ip = var.ips["tun0"]
},
]
2018-08-23 06:32:32 +00:00
}
2021-03-20 07:39:19 +00:00