blob: 526e1d0df0c84645d8d73ae35c09bc61c4c5ffc6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
terraform {
backend "consul" {
address = "10.32.8.14:8500"
scheme = "http"
path = "terraform/etl"
}
required_providers {
nomad = {
source = "hashicorp/nomad"
version = ">= 1.4.16"
}
vault = {
version = ">= 3.2.1"
}
}
required_version = ">= 1.1.4"
}
|