├── README.md ├── main.tf ├── modules ├── alertmanager │ ├── cloud.conf │ ├── main.tf │ ├── outputs.tf │ └── variables.tf ├── grafana │ ├── cloud.conf │ ├── main.tf │ ├── outputs.tf │ └── variables.tf └── prometheus │ ├── cloud.conf │ ├── main.tf │ ├── outputs.tf │ └── variables.tf ├── outputs.tf └── variables.tf /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasHild/terraform-prometheus-grafana/HEAD/README.md -------------------------------------------------------------------------------- /main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasHild/terraform-prometheus-grafana/HEAD/main.tf -------------------------------------------------------------------------------- /modules/alertmanager/cloud.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasHild/terraform-prometheus-grafana/HEAD/modules/alertmanager/cloud.conf -------------------------------------------------------------------------------- /modules/alertmanager/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasHild/terraform-prometheus-grafana/HEAD/modules/alertmanager/main.tf -------------------------------------------------------------------------------- /modules/alertmanager/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasHild/terraform-prometheus-grafana/HEAD/modules/alertmanager/outputs.tf -------------------------------------------------------------------------------- /modules/alertmanager/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasHild/terraform-prometheus-grafana/HEAD/modules/alertmanager/variables.tf -------------------------------------------------------------------------------- /modules/grafana/cloud.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasHild/terraform-prometheus-grafana/HEAD/modules/grafana/cloud.conf -------------------------------------------------------------------------------- /modules/grafana/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasHild/terraform-prometheus-grafana/HEAD/modules/grafana/main.tf -------------------------------------------------------------------------------- /modules/grafana/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasHild/terraform-prometheus-grafana/HEAD/modules/grafana/outputs.tf -------------------------------------------------------------------------------- /modules/grafana/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasHild/terraform-prometheus-grafana/HEAD/modules/grafana/variables.tf -------------------------------------------------------------------------------- /modules/prometheus/cloud.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasHild/terraform-prometheus-grafana/HEAD/modules/prometheus/cloud.conf -------------------------------------------------------------------------------- /modules/prometheus/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasHild/terraform-prometheus-grafana/HEAD/modules/prometheus/main.tf -------------------------------------------------------------------------------- /modules/prometheus/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasHild/terraform-prometheus-grafana/HEAD/modules/prometheus/outputs.tf -------------------------------------------------------------------------------- /modules/prometheus/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasHild/terraform-prometheus-grafana/HEAD/modules/prometheus/variables.tf -------------------------------------------------------------------------------- /outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasHild/terraform-prometheus-grafana/HEAD/outputs.tf -------------------------------------------------------------------------------- /variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasHild/terraform-prometheus-grafana/HEAD/variables.tf --------------------------------------------------------------------------------