forked from magenx/Magento-2-aws-cluster-terraform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprovider.tf
45 lines (42 loc) · 796 Bytes
/
provider.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 3.0"
}
null = {
source = "hashicorp/null"
version = "~> 3.0"
}
random = {
source = "hashicorp/random"
version = "~> 3.0"
}
template = {
source = "hashicorp/template"
version = "~> 2.0"
}
http = {
source = "hashicorp/http"
version = "~> 2.0"
}
external = {
source = "hashicorp/external"
version = "~> 2.0"
}
}
}
provider "aws" {
alias = "useast1"
region = "us-east-1"
default_tags {
tags = {
Managed = "terraform"
Config = "magenx"
Environment = "development"
}
}
provider "null" {}
provider "random" {}
provider "template" {}
provider "external" {}