-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy pathencryption_at_rest_test.go
422 lines (365 loc) · 14.2 KB
/
encryption_at_rest_test.go
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
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
package e2e_test
import (
"context"
"fmt"
"os"
"time"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
"go.mongodb.org/atlas-sdk/v20231115008/admin"
corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/types"
"github.com/mongodb/mongodb-atlas-kubernetes/v2/api"
akov2 "github.com/mongodb/mongodb-atlas-kubernetes/v2/api/v1"
"github.com/mongodb/mongodb-atlas-kubernetes/v2/api/v1/common"
"github.com/mongodb/mongodb-atlas-kubernetes/v2/api/v1/status"
"github.com/mongodb/mongodb-atlas-kubernetes/v2/internal/controller/connectionsecret"
"github.com/mongodb/mongodb-atlas-kubernetes/v2/internal/pointer"
"github.com/mongodb/mongodb-atlas-kubernetes/v2/test/helper/e2e/actions"
"github.com/mongodb/mongodb-atlas-kubernetes/v2/test/helper/e2e/actions/cloud"
"github.com/mongodb/mongodb-atlas-kubernetes/v2/test/helper/e2e/actions/cloudaccess"
"github.com/mongodb/mongodb-atlas-kubernetes/v2/test/helper/e2e/api/atlas"
"github.com/mongodb/mongodb-atlas-kubernetes/v2/test/helper/e2e/config"
"github.com/mongodb/mongodb-atlas-kubernetes/v2/test/helper/e2e/data"
"github.com/mongodb/mongodb-atlas-kubernetes/v2/test/helper/e2e/model"
"github.com/mongodb/mongodb-atlas-kubernetes/v2/test/helper/e2e/utils"
)
const (
AzureClientID = "AZURE_CLIENT_ID"
KeyVaultName = "ako-kms-test"
AzureClientSecret = "AZURE_CLIENT_SECRET" //#nosec G101 -- False positive; this is the env var, not the secret itself
AzureEnvironment = "AZURE"
KeyName = "encryption-at-rest-test-key"
)
var _ = Describe("Encryption at REST test", Label("encryption-at-rest"), func() {
var testData *model.TestDataProvider
_ = BeforeEach(func() {
checkUpAWSEnvironment()
checkUpAzureEnvironment()
checkNSetUpGCPEnvironment()
})
_ = AfterEach(func() {
GinkgoWriter.Write([]byte("\n"))
GinkgoWriter.Write([]byte("===============================================\n"))
GinkgoWriter.Write([]byte("Operator namespace: " + testData.Resources.Namespace + "\n"))
GinkgoWriter.Write([]byte("===============================================\n"))
if CurrentSpecReport().Failed() {
Expect(actions.SaveProjectsToFile(testData.Context, testData.K8SClient, testData.Resources.Namespace)).Should(Succeed())
}
By("Clean Cloud", func() {
DeleteAllRoles(testData)
})
By("Delete Resources, Project with Encryption at rest", func() {
actions.DeleteTestDataProject(testData)
actions.AfterEachFinalCleanup([]model.TestDataProvider{*testData})
})
})
DescribeTable("Encryption at rest for AWS, GCP, Azure",
func(test *model.TestDataProvider, encAtRest akov2.EncryptionAtRest, roles []cloudaccess.Role) {
testData = test
actions.ProjectCreationFlow(test)
if roles != nil {
cloudAccessRolesFlow(test, roles)
}
encryptionAtRestFlow(test, encAtRest)
},
Entry("Test[encryption-at-rest-aws]: Can add Encryption at Rest to AWS project", Label("encryption-at-rest-aws"),
model.DataProvider(
"encryption-at-rest-aws",
model.NewEmptyAtlasKeyType().UseDefaultFullAccess(),
40000,
[]func(*model.TestDataProvider){},
).WithProject(data.DefaultProject()),
akov2.EncryptionAtRest{
AwsKms: akov2.AwsKms{
Enabled: pointer.MakePtr(true),
Region: "US_EAST_1",
},
},
[]cloudaccess.Role{
{
Name: utils.RandomName(awsRoleNameBase),
AccessRole: akov2.CloudProviderIntegration{
ProviderName: "AWS",
},
},
},
),
Entry("Test[encryption-at-rest-azure]: Can add Encryption at Rest to Azure project", Label("encryption-at-rest-azure"),
model.DataProvider(
"encryption-at-rest-azure",
model.NewEmptyAtlasKeyType().UseDefaultFullAccess(),
40000,
[]func(*model.TestDataProvider){},
).WithProject(data.DefaultProject()),
akov2.EncryptionAtRest{
AzureKeyVault: akov2.AzureKeyVault{
AzureEnvironment: AzureEnvironment,
ClientID: os.Getenv(AzureClientID),
Enabled: pointer.MakePtr(true),
ResourceGroupName: cloud.ResourceGroupName,
TenantID: os.Getenv(DirectoryID),
},
},
nil,
),
Entry("Test[encryption-at-rest-gcp]: Can add Encryption at Rest to GCP project", Label("encryption-at-rest-gcp"),
model.DataProvider(
"encryption-at-rest-gcp",
model.NewEmptyAtlasKeyType().UseDefaultFullAccess(),
40000,
[]func(*model.TestDataProvider){},
).WithProject(data.DefaultProject()),
akov2.EncryptionAtRest{
GoogleCloudKms: akov2.GoogleCloudKms{
Enabled: pointer.MakePtr(true),
},
},
nil,
),
)
})
func encryptionAtRestFlow(userData *model.TestDataProvider, encAtRest akov2.EncryptionAtRest) {
By("Create KMS", func() {
Expect(userData.K8SClient.Get(userData.Context, types.NamespacedName{Name: userData.Project.Name,
Namespace: userData.Resources.Namespace}, userData.Project)).Should(Succeed())
var aRole status.CloudProviderIntegration
if len(userData.Project.Status.CloudProviderIntegrations) > 0 {
aRole = userData.Project.Status.CloudProviderIntegrations[0]
}
fillKMSforAWS(userData, &encAtRest, aRole.AtlasAWSAccountArn, aRole.IamAssumedRoleArn)
fillVaultforAzure(userData, &encAtRest)
fillKMSforGCP(userData, &encAtRest)
Expect(userData.K8SClient.Get(userData.Context, types.NamespacedName{Name: userData.Project.Name,
Namespace: userData.Resources.Namespace}, userData.Project)).Should(Succeed())
userData.Project.Spec.EncryptionAtRest = &encAtRest
Expect(userData.K8SClient.Update(userData.Context, userData.Project)).Should(Succeed())
actions.WaitForConditionsToBecomeTrue(userData, api.EncryptionAtRestReadyType, api.ReadyType)
})
By("Remove Encryption at Rest from the project", func() {
removeAllEncryptionsSeparately(&encAtRest)
Expect(userData.K8SClient.Get(userData.Context, types.NamespacedName{Name: userData.Project.Name,
Namespace: userData.Resources.Namespace}, userData.Project)).Should(Succeed())
userData.Project.Spec.EncryptionAtRest = &encAtRest
Expect(userData.K8SClient.Update(userData.Context, userData.Project)).Should(Succeed())
})
By("Check if project returned back to the initial state", func() {
actions.CheckProjectConditionsNotSet(userData, api.EncryptionAtRestReadyType)
Expect(userData.K8SClient.Get(userData.Context, types.NamespacedName{Name: userData.Project.Name,
Namespace: userData.Resources.Namespace}, userData.Project)).Should(Succeed())
Eventually(func(g Gomega) bool {
areEmpty, err := checkIfEncryptionsAreDisabled(userData.Project.ID())
g.Expect(err).ShouldNot(HaveOccurred())
return areEmpty
}).WithTimeout(5*time.Minute).WithPolling(20*time.Second).
Should(BeTrue(), "Encryption at Rest is not disabled")
})
}
func fillKMSforAWS(userData *model.TestDataProvider, encAtRest *akov2.EncryptionAtRest, atlasAccountArn, assumedRoleArn string) {
if (encAtRest.AwsKms == akov2.AwsKms{}) {
return
}
alias := fmt.Sprintf("%s-kms", userData.Project.Spec.Name)
Expect(encAtRest.AwsKms.Region).NotTo(Equal(""))
awsAction, err := cloud.NewAWSAction(GinkgoT())
Expect(err).ToNot(HaveOccurred())
CustomerMasterKeyID, err := awsAction.CreateKMS(alias, config.AWSRegionUS, atlasAccountArn, assumedRoleArn)
Expect(err).ToNot(HaveOccurred())
Expect(CustomerMasterKeyID).NotTo(Equal(""))
secret := &corev1.Secret{
TypeMeta: metav1.TypeMeta{
Kind: "Secret",
APIVersion: "v1",
},
ObjectMeta: metav1.ObjectMeta{
Name: "aws-secret",
Namespace: userData.Resources.Namespace,
Labels: map[string]string{
connectionsecret.TypeLabelKey: connectionsecret.CredLabelVal,
},
},
Data: map[string][]byte{
"CustomerMasterKeyID": []byte(CustomerMasterKeyID),
"RoleID": []byte(assumedRoleArn),
},
}
Expect(userData.K8SClient.Create(context.Background(), secret)).To(Succeed())
encAtRest.AwsKms.SecretRef = common.ResourceRefNamespaced{
Name: "aws-secret",
Namespace: userData.Resources.Namespace,
}
}
func fillVaultforAzure(userData *model.TestDataProvider, encAtRest *akov2.EncryptionAtRest) {
if (encAtRest.AzureKeyVault == akov2.AzureKeyVault{}) {
return
}
azAction, err := cloud.NewAzureAction(GinkgoT(), os.Getenv(SubscriptionID), cloud.ResourceGroupName)
Expect(err).ToNot(HaveOccurred())
keyID, err := azAction.CreateKeyVault(KeyName)
Expect(err).ToNot(HaveOccurred())
secret := &corev1.Secret{
TypeMeta: metav1.TypeMeta{
Kind: "Secret",
APIVersion: "v1",
},
ObjectMeta: metav1.ObjectMeta{
Name: "az-secret",
Namespace: userData.Resources.Namespace,
Labels: map[string]string{
connectionsecret.TypeLabelKey: connectionsecret.CredLabelVal,
},
},
Data: map[string][]byte{
"KeyIdentifier": []byte(keyID),
"KeyVaultName": []byte(KeyVaultName),
"Secret": []byte(os.Getenv(AzureClientSecret)),
"SubscriptionID": []byte(os.Getenv(SubscriptionID)),
},
}
Expect(userData.K8SClient.Create(context.Background(), secret)).To(Succeed())
encAtRest.AzureKeyVault.SecretRef = common.ResourceRefNamespaced{
Name: "az-secret",
Namespace: userData.Resources.Namespace,
}
}
func fillKMSforGCP(userData *model.TestDataProvider, encAtRest *akov2.EncryptionAtRest) {
if (encAtRest.GoogleCloudKms == akov2.GoogleCloudKms{}) {
return
}
gcpAction, err := cloud.NewGCPAction(GinkgoT(), cloud.GoogleProjectID)
Expect(err).ToNot(HaveOccurred())
keyID, err := gcpAction.CreateKMS()
Expect(err).ToNot(HaveOccurred())
secret := &corev1.Secret{
TypeMeta: metav1.TypeMeta{
Kind: "Secret",
APIVersion: "v1",
},
ObjectMeta: metav1.ObjectMeta{
Name: "gcp-secret",
Namespace: userData.Resources.Namespace,
Labels: map[string]string{
connectionsecret.TypeLabelKey: connectionsecret.CredLabelVal,
},
},
Data: map[string][]byte{
"ServiceAccountKey": []byte(os.Getenv("GCP_SA_CRED")),
"KeyVersionResourceID": []byte(keyID),
},
}
Expect(userData.K8SClient.Create(context.Background(), secret)).To(Succeed())
encAtRest.GoogleCloudKms.SecretRef = common.ResourceRefNamespaced{
Name: "gcp-secret",
Namespace: userData.Resources.Namespace,
}
}
func removeAllEncryptionsSeparately(encAtRest *akov2.EncryptionAtRest) {
encAtRest.AwsKms = akov2.AwsKms{}
encAtRest.AzureKeyVault = akov2.AzureKeyVault{}
encAtRest.GoogleCloudKms = akov2.GoogleCloudKms{}
}
func checkIfEncryptionsAreDisabled(projectID string) (areEmpty bool, err error) {
atlasClient := atlas.GetClientOrFail()
encryptionAtRest, err := atlasClient.GetEncryptionAtRest(projectID)
if err != nil {
return false, err
}
if encryptionAtRest == nil {
return true, nil
}
awsEnabled := *encryptionAtRest.AwsKms.Enabled
azureEnabled := *encryptionAtRest.AzureKeyVault.Enabled
gcpEnabled := *encryptionAtRest.GoogleCloudKms.Enabled
if awsEnabled || azureEnabled || gcpEnabled {
return false, nil
}
return true, nil
}
var _ = Describe("Encryption at rest AWS", Label("encryption-at-rest", "encryption-at-rest-aws"), Ordered, func() {
var testData *model.TestDataProvider
_ = BeforeEach(func() {
checkUpEnvironment()
checkUpAWSEnvironment()
})
_ = AfterEach(func() {
GinkgoWriter.Write([]byte("\n"))
GinkgoWriter.Write([]byte("===============================================\n"))
GinkgoWriter.Write([]byte("Operator namespace: " + testData.Resources.Namespace + "\n"))
GinkgoWriter.Write([]byte("===============================================\n"))
if CurrentSpecReport().Failed() {
Expect(actions.SaveProjectsToFile(testData.Context, testData.K8SClient, testData.Resources.Namespace)).Should(Succeed())
}
By("Clean Roles", func() {
DeleteAllRoles(testData)
})
By("Delete Resources, Project with Cloud provider access roles", func() {
actions.DeleteTestDataProject(testData)
actions.AfterEachFinalCleanup([]model.TestDataProvider{*testData})
})
})
It("Should be able to create Encryption at REST on AWS with RoleID equal to AWS ARN", func() {
testData = model.DataProvider(
"encryption-at-rest-aws",
model.NewEmptyAtlasKeyType().UseDefaultFullAccess(),
40000,
[]func(*model.TestDataProvider){},
).WithProject(data.DefaultProject())
roles := []cloudaccess.Role{
{
Name: utils.RandomName(awsRoleNameBase),
AccessRole: akov2.CloudProviderIntegration{
ProviderName: "AWS",
},
},
}
userData := testData
encAtRest := akov2.EncryptionAtRest{
AwsKms: akov2.AwsKms{
Enabled: pointer.MakePtr(true),
Region: "US_EAST_1",
},
}
By("Creating a project", func() {
actions.ProjectCreationFlow(testData)
})
var projectID string
By("Getting a project ID by name from Atlas", func() {
Eventually(func(g Gomega) error {
projectData, _, err := atlasClient.Client.ProjectsApi.
GetProjectByName(userData.Context, userData.Project.Spec.Name).
Execute()
g.Expect(err).NotTo(HaveOccurred())
g.Expect(projectData).NotTo(BeNil())
GinkgoLogr.Info("Project ID", projectData.GetId())
projectID = projectData.GetId()
return nil
}).WithTimeout(2 * time.Minute).WithPolling(10 * time.Second).Should(Succeed())
})
var atlasRoles *admin.CloudProviderAccessRoles
By("Add cloud access role (AWS only)", func() {
cloudAccessRolesFlow(userData, roles)
})
By("Fetching project CPAs", func() {
var err error
atlasRoles, _, err = atlasClient.Client.CloudProviderAccessApi.
ListCloudProviderAccessRoles(userData.Context, projectID).
Execute()
Expect(err).NotTo(HaveOccurred())
Expect(atlasRoles).NotTo(BeNil())
Expect(len(atlasRoles.GetAwsIamRoles())).NotTo(BeZero())
})
By("Create KMS with AWS RoleID", func() {
Expect(userData.K8SClient.Get(userData.Context, types.NamespacedName{Name: userData.Project.Name,
Namespace: userData.Resources.Namespace}, userData.Project)).Should(Succeed())
Expect(len(userData.Project.Status.CloudProviderIntegrations)).NotTo(Equal(0))
aRole := userData.Project.Status.CloudProviderIntegrations[0]
fillKMSforAWS(userData, &encAtRest, aRole.AtlasAWSAccountArn, aRole.IamAssumedRoleArn)
Expect(userData.K8SClient.Get(userData.Context, types.NamespacedName{Name: userData.Project.Name,
Namespace: userData.Resources.Namespace}, userData.Project)).Should(Succeed())
userData.Project.Spec.EncryptionAtRest = &encAtRest
Expect(userData.K8SClient.Update(userData.Context, userData.Project)).Should(Succeed())
actions.WaitForConditionsToBecomeTrue(userData, api.EncryptionAtRestReadyType, api.ReadyType)
})
})
})