generated from amazon-archives/__template_Apache-2.0
-
Notifications
You must be signed in to change notification settings - Fork 107
Closed
Labels
papercutSmall annoyances in the Cedar SDK. Lower priority fixes than bugs. Smaller than a feature requestSmall annoyances in the Cedar SDK. Lower priority fixes than bugs. Smaller than a feature request
Description
Category
Other
Describe the feature you'd like to request
The error message for an invalid equality in the action scope is misleading in two cases.
If you write an equality with an invalid expression on the right, it expects an entity uid or set of entity uids
, but ==
doesn't accept a set.
jkastner@88665a03aa97 cedar % cargo run check-parse <<<'permit(principal, action == 1, resource);'
Finished dev [unoptimized + debuginfo] target(s) in 0.58s
Running `target/debug/cedar check-parse`
× failed to parse policy set
╰─▶ expected an entity uid or set of entity uids, found literal `1`
╭─[<stdin>:1:1]
1 │ permit(principal, action == 1, resource);
· ─
╰────
If we follow the advice and try it with a set, it now claims to want a single entity uid or a template slot
, but a slot isn't allowed in the action scope.
jkastner@88665a03aa97 cedar % cargo run check-parse <<<'permit(principal, action == [Action::"foo"], resource);'
Finished dev [unoptimized + debuginfo] target(s) in 0.27s
Running `target/debug/cedar check-parse`
× failed to parse policy set
╰─▶ the right hand side of equality in the policy scope must be a single entity uid or a template slot
╭─[<stdin>:1:1]
1 │ permit(principal, action == [Action::"foo"], resource);
· ───────────────
╰────
Describe alternatives you've considered
.
Additional context
No response
Is this something that you'd be interested in working on?
- 👋 I may be able to implement this feature request
-
⚠️ This feature might incur a breaking change
Metadata
Metadata
Assignees
Labels
papercutSmall annoyances in the Cedar SDK. Lower priority fixes than bugs. Smaller than a feature requestSmall annoyances in the Cedar SDK. Lower priority fixes than bugs. Smaller than a feature request