Skip to content
This repository was archived by the owner on Jan 28, 2022. It is now read-only.

Commit 954357f

Browse files
Adding back in ACLs.
1 parent f7da132 commit 954357f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

controllers/secretscope_controller_test.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -83,11 +83,11 @@ var _ = Describe("SecretScope Controller", func() {
8383
spec := databricksv1alpha1.SecretScopeSpec{
8484
InitialManagePrincipal: "users",
8585
SecretScopeSecrets: make([]databricksv1alpha1.SecretScopeSecret, 0),
86-
// SecretScopeACLs: []databricksv1alpha1.SecretScopeACL{
87-
// databricksv1alpha1.SecretScopeACL{Principal: "admins", Permission: "WRITE"},
88-
// databricksv1alpha1.SecretScopeACL{Principal: "admins", Permission: "READ"},
89-
// databricksv1alpha1.SecretScopeACL{Principal: "admins", Permission: "MANAGE"},
90-
// },
86+
SecretScopeACLs: []databricksv1alpha1.SecretScopeACL{
87+
databricksv1alpha1.SecretScopeACL{Principal: "admins", Permission: "WRITE"},
88+
databricksv1alpha1.SecretScopeACL{Principal: "admins", Permission: "READ"},
89+
databricksv1alpha1.SecretScopeACL{Principal: "admins", Permission: "MANAGE"},
90+
},
9191
}
9292

9393
key := types.NamespacedName{

0 commit comments

Comments
 (0)