-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.tf
101 lines (95 loc) · 2.49 KB
/
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
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/**
* # ![AWS](aws-logo.png) KMS customer-managed key (CMK)
*
* [![CI](https://github.com/figurate/terraform-aws-kms-key/actions/workflows/main.yml/badge.svg)](https://github.com/figurate/terraform-aws-kms-key/actions/workflows/main.yml)
*
*
* Purpose: Configure a KMS key
*/
data "aws_caller_identity" "current" {}
# data "aws_iam_policy_document" "policy" {
# statement {
# sid = "Enable IAM User Permissions"
# actions = ["kms:*"]
# resources = ["*"]
# principals {
# identifiers = ["arn:aws:iam::${data.aws_caller_identity.current.account_id}:root"]
# type = "AWS"
# }
# }
# dynamic statement {
# for_each = length(var.admins) > 0 ? [1] : []
# content {
# sid = "Allow access for Key Administrators"
# actions = [
# "kms:Create*",
# "kms:Describe*",
# "kms:Enable*",
# "kms:List*",
# "kms:Put*",
# "kms:Update*",
# "kms:Revoke*",
# "kms:Disable*",
# "kms:Get*",
# "kms:Delete*",
# "kms:TagResource",
# "kms:UntagResource",
# "kms:ScheduleKeyDeletion",
# "kms:CancelKeyDeletion"
# ]
# resources = ["*"]
# principals {
# identifiers = var.admins
# type = "AWS"
# }
# }
# }
# dynamic statement {
# for_each = length(var.users) > 0 ? [1] : []
# content {
# sid = "Allow use of the key"
# actions = [
# "kms:Encrypt",
# "kms:Decrypt",
# "kms:ReEncrypt*",
# "kms:GenerateDataKey*",
# "kms:DescribeKey"
# ]
# resources = ["*"]
# principals {
# identifiers = var.users
# type = "AWS"
# }
# }
# }
# dynamic statement {
# for_each = length(var.users) > 0 ? [1] : []
# content {
# sid = "Allow attachment of persistent resources"
# actions = [
# "kms:CreateGrant",
# "kms:ListGrants",
# "kms:RevokeGrant"
# ]
# resources = ["*"]
# condition {
# test = "Bool"
# values = ["true"]
# variable = "kms:GrantIsForAWSResource"
# }
# principals {
# identifiers = var.users
# type = "AWS"
# }
# }
# }
# }
resource "aws_kms_key" "key" {
description = var.description
enable_key_rotation = true
}
resource "aws_kms_alias" "key" {
count = var.alias != null ? 1 : 0
target_key_id = aws_kms_key.key.id
name = "alias/${var.alias}"
}