nebula/opml/redis.tf

16 lines
235 B
Terraform
Raw Normal View History

2018-08-21 03:24:06 +00:00
module "redis" {
name = "opml-redis"
source = "../modules/container"
image = "redis:alpine"
networks = ["${docker_network.opml.id}"]
2018-05-31 20:55:49 +00:00
2018-08-21 03:24:06 +00:00
# ThisSucks
web {
expose = "false"
2018-05-31 20:55:49 +00:00
}
2018-08-21 03:24:06 +00:00
resource {
memory = 256
}
2018-05-31 20:55:49 +00:00
}