forked from airbnb/ottr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsecrets.tf
50 lines (43 loc) · 1.52 KB
/
secrets.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
module "lets_encrypt_account_json" {
source = "./modules/secrets"
name = "${module.otter.prefix}/otter/account.json"
region = var.region
aws_account_id = data.aws_caller_identity.otter.account_id
}
module "lets_encrypt_account_key" {
source = "./modules/secrets"
name = "${module.otter.prefix}/otter/account.key"
region = var.region
aws_account_id = data.aws_caller_identity.otter.account_id
}
module "lets_encrypt_account_conf" {
source = "./modules/secrets"
name = "${module.otter.prefix}/otter/ca.conf"
region = var.region
aws_account_id = data.aws_caller_identity.otter.account_id
}
module "slack" {
source = "./modules/secrets"
name = "${module.otter.prefix}/otter/slack"
region = var.region
aws_account_id = data.aws_caller_identity.otter.account_id
}
# Platform Credentials (Authentication)
module "f5" {
source = "./modules/secrets"
name = "${module.otter.prefix}/otter/f5"
region = var.region
aws_account_id = data.aws_caller_identity.otter.account_id
}
module "panos" {
source = "./modules/secrets"
name = "${module.otter.prefix}/otter/panos"
region = var.region
aws_account_id = data.aws_caller_identity.otter.account_id
}
module "lighthouse" {
source = "./modules/secrets"
name = "${module.otter.prefix}/otter/lighthouse"
region = var.region
aws_account_id = data.aws_caller_identity.otter.account_id
}