-
Notifications
You must be signed in to change notification settings - Fork 92
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
kbs: ITA: Documentation update. #675
base: main
Are you sure you want to change the base?
kbs: ITA: Documentation update. #675
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess the DCO is complaining because your sign-off doesn't match the name in the "from" field of your patch (which is lowercase). Can you tweak that please. Otherwise seems ok.
cc @mythi
058279c
to
7cd9fc3
Compare
Documentation of parameters `policy_ids` and `allow_unmatched_policy` updated to be more descriptive. Signed-off-by: szymon.klimek <[email protected]>
7cd9fc3
to
617943f
Compare
| `api_key` | String | Intel Trust Authority API key. | Yes | - | | ||
| `certs_file` | String | URL to an Intel Trust Authority portal or path to JWKS file used for token verification. | Yes | - | | ||
| `policy_ids` | String array | Quoted and comma-separated list of policy IDs defined in ITA portal. | No | `[]` | | ||
| `allow_unmatched_policy` | Boolean | If `policy_ids` is not specified, parameter is ignored and ignores result of policy matching. <br/> Otherwise, define whether result of policy matching should be ignored. | No | false | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| `allow_unmatched_policy` | Boolean | If `policy_ids` is not specified, parameter is ignored and ignores result of policy matching. <br/> Otherwise, define whether result of policy matching should be ignored. | No | false | | |
| `allow_unmatched_policy` | Boolean | If `policy_ids` is empty, this setting is ignored. By default, the listed policies must always match. Enabling this flag relaxes that requirement. | No | false | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In my opinion By default
here is misleading, beacuse by default policy_ids
are empty
so the true default behavior is that policies does not have to match
Documentation of parameters
policy_ids
andallow_unmatched_policy
updated to be more descriptive.