-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Backport of [CC-5719] Add support for builtin global-read-only policy…
… into release/1.15.x (#18344) [CC-5719] Add support for builtin global-read-only policy (#18319) * [CC-5719] Add support for builtin global-read-only policy * Add changelog * Add read-only to docs * Fix some minor issues. * Change from ReplaceAll to Sprintf * Change IsValidPolicy name to return an error instead of bool * Fix PolicyList test * Fix other tests * Apply suggestions from code review * Fix state store test for policy list. * Fix naming issues * Update acl/validation.go * Update agent/consul/acl_endpoint.go --------- Co-authored-by: Jeremy Jacobson <jjacobson93@users.noreply.github.com> Co-authored-by: Paul Glass <pglass@hashicorp.com> Co-authored-by: Chris Thain <32781396+cthain@users.noreply.github.com>
- Loading branch information
1 parent
39ed6a7
commit 30a1623
Showing
18 changed files
with
316 additions
and
149 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
```release-note:improvement | ||
acl: added builtin ACL policy that provides global read-only access (builtin/global-read-only) | ||
``` | ||
```release-note:improvement | ||
acl: allow for a single slash character in policy names | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
// Copyright (c) HashiCorp, Inc. | ||
// SPDX-License-Identifier: MPL-2.0 | ||
|
||
package acl | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/stretchr/testify/require" | ||
) | ||
|
||
func Test_ValidatePolicyName(t *testing.T) { | ||
for _, tc := range []struct { | ||
description string | ||
name string | ||
valid bool | ||
}{ | ||
{ | ||
description: "valid policy", | ||
name: "this-is-valid", | ||
valid: true, | ||
}, | ||
{ | ||
description: "empty policy", | ||
name: "", | ||
valid: false, | ||
}, | ||
{ | ||
description: "with slash", | ||
name: "policy/with-slash", | ||
valid: true, | ||
}, | ||
{ | ||
description: "leading slash", | ||
name: "/no-leading-slash", | ||
valid: false, | ||
}, | ||
{ | ||
description: "too many slashes", | ||
name: "too/many/slashes", | ||
valid: false, | ||
}, | ||
{ | ||
description: "no double-slash", | ||
name: "no//double-slash", | ||
valid: false, | ||
}, | ||
{ | ||
description: "builtin prefix", | ||
name: "builtin/prefix-cannot-be-used", | ||
valid: false, | ||
}, | ||
{ | ||
description: "long", | ||
name: "this-policy-name-is-very-very-long-but-it-is-okay-because-it-is-the-max-length-that-we-allow-here-in-a-policy-name-which-is-good", | ||
valid: true, | ||
}, | ||
{ | ||
description: "too long", | ||
name: "this-is-a-policy-that-has-one-character-too-many-it-is-way-too-long-for-a-policy-we-do-not-want-a-policy-of-this-length-because-1", | ||
valid: false, | ||
}, | ||
{ | ||
description: "invalid start character", | ||
name: "!foo", | ||
valid: false, | ||
}, | ||
{ | ||
description: "invalid character", | ||
name: "this%is%bad", | ||
valid: false, | ||
}, | ||
} { | ||
t.Run(tc.description, func(t *testing.T) { | ||
require.Equal(t, tc.valid, ValidatePolicyName(tc.name) == nil) | ||
}) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.