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

Commit

Permalink
Adding back in ACLs.
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonTheDeveloper committed Nov 25, 2019
1 parent f7da132 commit 954357f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions controllers/secretscope_controller_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,11 @@ var _ = Describe("SecretScope Controller", func() {
spec := databricksv1alpha1.SecretScopeSpec{
InitialManagePrincipal: "users",
SecretScopeSecrets: make([]databricksv1alpha1.SecretScopeSecret, 0),
// SecretScopeACLs: []databricksv1alpha1.SecretScopeACL{
// databricksv1alpha1.SecretScopeACL{Principal: "admins", Permission: "WRITE"},
// databricksv1alpha1.SecretScopeACL{Principal: "admins", Permission: "READ"},
// databricksv1alpha1.SecretScopeACL{Principal: "admins", Permission: "MANAGE"},
// },
SecretScopeACLs: []databricksv1alpha1.SecretScopeACL{
databricksv1alpha1.SecretScopeACL{Principal: "admins", Permission: "WRITE"},
databricksv1alpha1.SecretScopeACL{Principal: "admins", Permission: "READ"},
databricksv1alpha1.SecretScopeACL{Principal: "admins", Permission: "MANAGE"},
},
}

key := types.NamespacedName{
Expand Down

0 comments on commit 954357f

Please sign in to comment.