blob: 87853e8c6060d374924b8ab1d6f082d367b9b9a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
terraform {
backend "consul" {
address = "10.30.51.23:8500"
scheme = "http"
path = "terraform/etl"
}
required_providers {
nomad = {
source = "hashicorp/nomad"
version = ">= 1.4.19"
}
vault = {
version = ">= 3.12.0"
}
}
required_version = ">= 1.3.7"
}
|