Skip to content

Commit

Permalink
[CC-6039] Update builtin policy descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
jjacobson93 committed Sep 7, 2023
1 parent 3c70e14 commit aa8dee9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion agent/consul/fsm/snapshot_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ func TestFSM_SnapshotRestore_CE(t *testing.T) {
policy := &structs.ACLPolicy{
ID: structs.ACLPolicyGlobalManagementID,
Name: "global-management",
Description: "Builtin Policy that grants unlimited access",
Description: structs.ACLPolicyGlobalManagementDesc,
Rules: structs.ACLPolicyGlobalManagementRules,
}
policy.SetHash(true)
Expand Down
2 changes: 1 addition & 1 deletion agent/consul/state/acl_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1582,7 +1582,7 @@ func TestStateStore_ACLPolicy_SetGet(t *testing.T) {
require.NoError(t, err)
require.NotNil(t, rpolicy)
require.Equal(t, "global-management", rpolicy.Name)
require.Equal(t, "Builtin Policy that grants unlimited access", rpolicy.Description)
require.Equal(t, structs.ACLPolicyGlobalManagementDesc, rpolicy.Description)
require.Equal(t, structs.ACLPolicyGlobalManagementRules, rpolicy.Rules)
require.Len(t, rpolicy.Datacenters, 0)
require.Equal(t, uint64(1), rpolicy.CreateIndex)
Expand Down
4 changes: 2 additions & 2 deletions agent/structs/acl.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,11 @@ const (
// may rename if desired but cannot delete or modify the rules.
ACLPolicyGlobalManagementID = "00000000-0000-0000-0000-000000000001"
ACLPolicyGlobalManagementName = "global-management"
ACLPolicyGlobalManagementDesc = "Builtin Policy that grants unlimited access"
ACLPolicyGlobalManagementDesc = "A built-in policy that grants read and write access to all Consul features"

ACLPolicyGlobalReadOnlyID = "00000000-0000-0000-0000-000000000002"
ACLPolicyGlobalReadOnlyName = "builtin/global-read-only"
ACLPolicyGlobalReadOnlyDesc = "Builtin Policy that grants unlimited read-only access to all components"
ACLPolicyGlobalReadOnlyDesc = "A built-in policy that grants read-only access to all Consul features"

ACLReservedIDPrefix = "00000000-0000-0000-0000-0000000000"

Expand Down

0 comments on commit aa8dee9

Please sign in to comment.