nebula/monitoring/prometheus.tf

45 lines
890 B
Terraform
Raw Normal View History

2018-04-22 12:39:44 +00:00
resource "docker_container" "prometheus" {
2018-02-09 20:56:31 +00:00
name = "prometheus"
image = "${docker_image.prometheus.latest}"
# prometheus:prometheus
user = "985:983"
ports {
internal = 9090
2018-07-08 19:41:18 +00:00
external = 8811
2018-02-09 20:56:31 +00:00
ip = "${var.ips["eth0"]}"
}
2018-04-05 09:16:40 +00:00
ports {
internal = 9090
2018-07-08 19:41:18 +00:00
external = 8811
2018-04-05 09:16:40 +00:00
ip = "${var.ips["tun0"]}"
}
2018-02-09 20:56:31 +00:00
command = ["--config.file=/etc/prometheus/prometheus.yml"]
volumes {
host_path = "/mnt/xwing/data/prometheus"
container_path = "/prometheus"
}
upload {
content = "${file("${path.module}/config/prometheus.yml")}"
file = "/etc/prometheus/prometheus.yml"
}
2018-06-04 14:10:58 +00:00
networks = [
"${data.docker_network.bridge.id}",
2018-06-04 14:10:58 +00:00
"${docker_network.monitoring.id}",
2018-02-09 20:56:31 +00:00
]
restart = "unless-stopped"
destroy_grace_seconds = 10
must_run = true
}
data "docker_network" "bridge" {
name = "bridge"
}