nebula/znc.tf
Nemo 137eb3469f
Terraform Upgrade to 1.x (#3)
Co-authored-by: Hashfyre <joy.bhattacherjee@gmail.com>
2021-10-15 12:54:13 +00:00

22 lines
317 B
HCL

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