forked from turnerlabs/terraform-ecs-fargate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathssm-parameters.tf
199 lines (170 loc) · 4.55 KB
/
ssm-parameters.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
locals {
# KMS write actions
kms_write_actions = [
"kms:CancelKeyDeletion",
"kms:CreateAlias",
"kms:CreateGrant",
"kms:CreateKey",
"kms:DeleteAlias",
"kms:DeleteImportedKeyMaterial",
"kms:DisableKey",
"kms:DisableKeyRotation",
"kms:EnableKey",
"kms:EnableKeyRotation",
"kms:Encrypt",
"kms:GenerateDataKey",
"kms:GenerateDataKeyWithoutPlaintext",
"kms:GenerateRandom",
"kms:GetKeyPolicy",
"kms:GetKeyRotationStatus",
"kms:GetParametersForImport",
"kms:ImportKeyMaterial",
"kms:PutKeyPolicy",
"kms:ReEncryptFrom",
"kms:ReEncryptTo",
"kms:RetireGrant",
"kms:RevokeGrant",
"kms:ScheduleKeyDeletion",
"kms:TagResource",
"kms:UntagResource",
"kms:UpdateAlias",
"kms:UpdateKeyDescription",
]
# KMS read actions
kms_read_actions = [
"kms:Decrypt",
"kms:DescribeKey",
"kms:List*",
]
# list of saml users for policies
saml_user_ids = flatten([
data.aws_caller_identity.current.user_id,
data.aws_caller_identity.current.account_id,
formatlist(
"%s:%s",
data.aws_iam_role.saml_role_ssm.unique_id,
var.secrets_saml_users,
),
])
# list of role users and saml users for policies
role_and_saml_ids = flatten([
"${aws_iam_role.ecsTaskExecutionRole.unique_id}:*",
local.saml_user_ids,
])
}
# get the saml user info so we can get the unique_id
data "aws_iam_role" "saml_role_ssm" {
name = var.saml_role
}
# The users (email addresses) from the saml role to give access
# case sensitive
variable "secrets_saml_users" {
type = list(string)
}
# kms key used to encrypt ssm parameters
resource "aws_kms_key" "ssm" {
description = "ssm parameters key for ${var.app}-${var.environment}"
deletion_window_in_days = 7
enable_key_rotation = true
tags = var.tags
policy = data.aws_iam_policy_document.ssm.json
}
resource "aws_kms_alias" "ssm" {
name = "alias/${var.app}-${var.environment}"
target_key_id = "${aws_kms_key.ssm.id}"
}
data "aws_iam_policy_document" "ssm" {
statement {
sid = "DenyWriteToAllExceptSAMLUsers"
effect = "Deny"
principals {
type = "AWS"
identifiers = ["*"]
}
actions = local.kms_write_actions
resources = ["*"]
condition {
test = "StringNotLike"
variable = "aws:userId"
values = local.saml_user_ids
}
}
statement {
sid = "DenyReadToAllExceptRoleAndSAMLUsers"
effect = "Deny"
principals {
type = "AWS"
identifiers = ["*"]
}
actions = local.kms_read_actions
resources = ["*"]
condition {
test = "StringNotLike"
variable = "aws:userId"
values = local.role_and_saml_ids
}
}
statement {
sid = "AllowWriteToSAMLUsers"
effect = "Allow"
principals {
type = "AWS"
identifiers = ["*"]
}
actions = local.kms_write_actions
resources = ["*"]
condition {
test = "StringLike"
variable = "aws:userId"
values = local.saml_user_ids
}
}
statement {
sid = "AllowReadRoleAndSAMLUsers"
effect = "Allow"
principals {
type = "AWS"
identifiers = ["*"]
}
actions = local.kms_read_actions
resources = ["*"]
condition {
test = "StringLike"
variable = "aws:userId"
values = local.role_and_saml_ids
}
}
}
# allow ecs task execution role to read this app's parameters
resource "aws_iam_policy" "ecsTaskExecutionRole_ssm" {
name = "${var.app}-${var.environment}-ecs-ssm"
path = "/"
description = "allow ecs task execution role to read this app's parameters"
policy = <<EOF
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"ssm:GetParameters"
],
"Resource": "arn:aws:ssm:${var.region}:${data.aws_caller_identity.current.account_id}:parameter/${var.app}/${var.environment}/*"
}
]
}
EOF
}
resource "aws_iam_role_policy_attachment" "ecsTaskExecutionRole_ssm" {
role = aws_iam_role.ecsTaskExecutionRole.name
policy_arn = aws_iam_policy.ecsTaskExecutionRole_ssm.arn
}
output "ssm_add_secret" {
value = "aws ssm put-parameter --overwrite --type \"SecureString\" --key-id \"${aws_kms_alias.ssm.name}\" --name \"/${var.app}/${var.environment}/PASSWORD\" --value \"password\""
}
output "ssm_add_secret_ref" {
value = "fargate service env set --secret PASSWORD=/${var.app}/${var.environment}/PASSWORD"
}
output "ssm_key_id" {
value = aws_kms_key.ssm.key_id
}