blob: 714382330a2b903d6bb23682af199ceec4e0417a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
terraform {
backend "consul" {
address = "consul.service.consul:8500"
scheme = "http"
path = "terraform/dash"
}
required_providers {
aws = {
source = "hashicorp/aws"
version = ">= 4.3.0"
}
vault = {
version = ">= 3.2.1"
}
}
required_version = ">= 1.1.4"
}
|