-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tf
44 lines (37 loc) · 925 Bytes
/
main.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
provider "aws" {
access_key = "fake_access_key"
secret_key = "fake_secret_key"
region = "us-east-1"
s3_force_path_style = true
skip_credentials_validation = true
skip_metadata_api_check = true
skip_requesting_account_id = true
endpoints {
ec2 = "http://localhost:4566"
iam = "http://localhost:4566"
lambda = "http://localhost:4566"
s3 = "http://localhost:4566"
secretsmanager = "http://localhost:4566"
sts = "http://localhost:4566"
}
}
module "api" {
source = "./modules/tktk_service_api"
acctid = var.acctid
}
module "principals" {
source = "./modules/tktk_service_other_personnel"
acctid = var.acctid
}
module "finances" {
source = "./modules/tktk_service_finances"
acctid = var.acctid
}
module "support" {
source = "./modules/tktk_service_support"
acctid = var.acctid
}
module "website" {
source = "./modules/tktk_service_website"
acctid = var.acctid
}