nebula/echoserver.tf

13 lines
245 B
Terraform
Raw Permalink Normal View History

2018-07-31 08:37:08 +00:00
module "echo-server" {
source = "./modules/container"
2018-07-31 08:37:08 +00:00
name = "echo-server"
image = "jmalloc/echo-server:latest"
web = {
2018-08-06 21:25:46 +00:00
expose = "true"
2018-07-31 08:37:08 +00:00
port = 8080
2018-08-06 21:25:46 +00:00
host = "debug.${var.root-domain},debug.in.${var.root-domain}"
2018-07-31 08:37:08 +00:00
}
2018-06-02 19:02:31 +00:00
}