This website works better with JavaScript.
Home
Contact
Status
Help
Register
Sign In
nemo
/
nebula
Watch
1
Star
0
Fork
0
Code
Issues
3
Pull Requests
0
Releases
1
Wiki
Activity
Browse Source
Adds ZNC
1.0.0
Nemo
2 years ago
parent
840ce49e98
commit
6646320d74
2 changed files
with
24 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-0
variables.tf
+21
-0
znc.tf
+ 3
- 0
variables.tf
View File
@ -82,3 +82,6 @@ variable "root-domain" {
description
=
"
root domain for most applications
"
default
=
"
bb8.fun
"
}
variable
"
znc_pass
"
{
}
variable
"
znc_user
"
{
}
+ 21
- 0
znc.tf
View File
@ -0,0 +1,21 @@
module
"
znc
"
{
source
=
"
modules/container
"
image
=
"
znc:latest
"
name
=
"
znc
"
web
{
expose
=
"
false
"
host
=
"
"
}
volumes
=
[
{
container_path
=
"
/znc-data
"
host_path
=
"
/mnt/xwing/config/znc
"
}
]
ports
=
[
{
internal
=
6697
external
=
6697
ip
=
"
${
var
.
ips
[
"
tun0
"
]
}
"
}
]
}
Write
Preview
Loading…
Cancel
Save