-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkms.tf
More file actions
29 lines (24 loc) · 748 Bytes
/
kms.tf
File metadata and controls
29 lines (24 loc) · 748 Bytes
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
module "ecr_kms" {
source = "[email protected]:TransformCore/internal-terraform-aws-kms.git?ref=v0.0.1"
name = "${local.project}-ecr-key"
description = "Key to encrypt the ECR."
tags = {
Terraform = "true"
}
}
module "athena_kms" {
source = "[email protected]:TransformCore/internal-terraform-aws-kms.git?ref=v0.0.1"
name = "${local.project}-athena-key"
description = "Key to encrypt the Athena database."
tags = {
Terraform = "true"
}
}
module "paramstore_kms" {
source = "[email protected]:TransformCore/internal-terraform-aws-kms.git?ref=v0.0.1"
name = "${local.project}-ssm-key"
description = "Key to encrypt secrets in Parameter Store."
tags = {
Terraform = "true"
}
}