Skip to content

Commit 21b3112

Browse files
authored
Add missing file to tests
1 parent d09d734 commit 21b3112

File tree

1 file changed

+71
-0
lines changed

1 file changed

+71
-0
lines changed
Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
terraform {
2+
required_version = ">= 0.13"
3+
required_providers {
4+
aws = {
5+
source = "hashicorp/aws"
6+
version = ">= 4.0"
7+
}
8+
}
9+
}
10+
11+
provider "aws" {
12+
alias = "main"
13+
region = "us-east-1"
14+
skip_credentials_validation = true
15+
skip_requesting_account_id = true
16+
skip_metadata_api_check = true
17+
s3_use_path_style = true
18+
19+
endpoints {
20+
apigateway = "http://localstack:4566"
21+
cloudformation = "http://localstack:4566"
22+
cloudwatch = "http://localstack:4566"
23+
dynamodb = "http://localstack:4566"
24+
es = "http://localstack:4566"
25+
firehose = "http://localstack:4566"
26+
iam = "http://localstack:4566"
27+
kinesis = "http://localstack:4566"
28+
lambda = "http://localstack:4566"
29+
route53 = "http://localstack:4566"
30+
redshift = "http://localstack:4566"
31+
s3 = "http://localstack:4566"
32+
secretsmanager = "http://localstack:4566"
33+
ses = "http://localstack:4566"
34+
sns = "http://localstack:4566"
35+
sqs = "http://localstack:4566"
36+
ssm = "http://localstack:4566"
37+
stepfunctions = "http://localstack:4566"
38+
sts = "http://localstack:4566"
39+
}
40+
}
41+
42+
provider "aws" {
43+
alias = "acm_provider"
44+
region = "us-east-1"
45+
skip_credentials_validation = true
46+
skip_requesting_account_id = true
47+
skip_metadata_api_check = true
48+
s3_use_path_style = true
49+
50+
endpoints {
51+
apigateway = "http://localstack:4566"
52+
cloudformation = "http://localstack:4566"
53+
cloudwatch = "http://localstack:4566"
54+
dynamodb = "http://localstack:4566"
55+
es = "http://localstack:4566"
56+
firehose = "http://localstack:4566"
57+
iam = "http://localstack:4566"
58+
kinesis = "http://localstack:4566"
59+
lambda = "http://localstack:4566"
60+
route53 = "http://localstack:4566"
61+
redshift = "http://localstack:4566"
62+
s3 = "http://localstack:4566"
63+
secretsmanager = "http://localstack:4566"
64+
ses = "http://localstack:4566"
65+
sns = "http://localstack:4566"
66+
sqs = "http://localstack:4566"
67+
ssm = "http://localstack:4566"
68+
stepfunctions = "http://localstack:4566"
69+
sts = "http://localstack:4566"
70+
}
71+
}

0 commit comments

Comments
 (0)