nebula/opml/redis.tf

18 lines
290 B
Terraform
Raw Normal View History

2018-08-21 03:24:06 +00:00
module "redis" {
2019-04-27 10:54:48 +00:00
name = "opml-redis"
source = "../modules/container"
image = "redis:alpine"
networks = ["${docker_network.opml.id}"]
keep_image = true
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 {
2019-04-27 10:54:48 +00:00
memory = 256
memory_swap = 256
2018-08-21 03:24:06 +00:00
}
2018-05-31 20:55:49 +00:00
}