nebula/znc.tf

22 lines
317 B
Terraform
Raw Permalink Normal View History

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