blob: 2a5c83f29f52ddc0122c3ca2a7dc69cd521b9b96 (
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"
}
|