forked from UKHomeOffice/acp-tf-guardduty-notify-slack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
__providers__._tf_
80 lines (64 loc) · 1.23 KB
/
__providers__._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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# Do not delete this file without understanding the consequences
#
# It is required for successfully validating the module
# By acting as a root module specifying the providers to use
# See the Drone pipeline for how this file is used
provider "aws" {
region = "eu-west-2"
}
provider "aws" {
alias = "eu-west-1"
region = "eu-west-1"
}
provider "aws" {
alias = "us-east-2"
region = "us-east-2"
}
provider "aws" {
alias = "us-west-2"
region = "us-west-2"
}
provider "aws" {
alias = "us-west-1"
region = "us-west-1"
}
provider "aws" {
alias = "ap-southeast-1"
region = "ap-southeast-1"
}
provider "aws" {
alias = "ap-southeast-2"
region = "ap-southeast-2"
}
provider "aws" {
alias = "ap-northeast-1"
region = "ap-northeast-1"
}
provider "aws" {
alias = "ap-northeast-2"
region = "ap-northeast-2"
}
provider "aws" {
alias = "ap-south-1"
region = "ap-south-1"
}
provider "aws" {
alias = "eu-central-1"
region = "eu-central-1"
}
provider "aws" {
alias = "eu-west-3"
region = "eu-west-3"
}
provider "aws" {
alias = "sa-east-1"
region = "sa-east-1"
}
provider "aws" {
alias = "us-east-1"
region = "us-east-1"
}
provider "aws" {
alias = "ca-central-1"
region = "ca-central-1"
}