-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Takumi Yanagawa <[email protected]>
- Loading branch information
Showing
56 changed files
with
61,513 additions
and
10 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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,14 @@ | ||
Field of OSCAL Assessment Result,How is Auditree check_results.json mapped,Field of Auditree check_results.json | ||
local-definitions.inventory-items[],Per check_result,check_results[] | ||
local-definitions.inventory-items[].props[].check_path,check_result key name,check_results[].$key | ||
local-definitions.inventory-items[].props[].accreditations,accreditations in check_result,check_results[].accreditations | ||
observations[],Per rule, | ||
observations[].subjects[],"Per check (filter(check_id in rule, check_results.$key.checks))","filter(lambda check: check in rule, check_results[].checks)" | ||
observations[].subjects[].subject_uuid,Inventory item id of the check,local-definitions.inventory-items[].uuid | ||
observations[].subjects[].props[].result,Status of check (pass/fail),check.status | ||
observations[].subjects[].props[].reason,Reason of the status,str(check.successes/failures/warnings) | ||
observations[].subjects[].props[].resource-id,Fully qualified check name ,f‘{check_result.$key}.{check.$key}’ | ||
observations[].subjects[].props[].evaluate-on,Evaluation timestamp,check.timestamp_formatted | ||
observations[].relevant_references[].description,Evidence description,check_result.evidence[].description | ||
observations[].relevant_references[].href,Evidence urls,locker_url + check_result.evidence[].path | ||
observations[].links[].href,Report urls,locker_url + check_result.reports[] |
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,16 @@ | ||
compliance: | ||
name: Demo Compliance | ||
catalog: | ||
url: https://raw.githubusercontent.com/usnistgov/oscal-content/main/nist.gov/SP800-53/rev5/json/NIST_SP-800-53_rev5_catalog.json | ||
profile: | ||
url: ./docs/ocm/oscal/profile.json | ||
componentDefinition: | ||
url: ./docs/ocm/oscal/component-definition.json | ||
policyResources: | ||
url: ./pkg/testdata/ocm/policies # example policy resources | ||
clusterGroups: | ||
- name: myclusters | ||
matchLabels: | ||
my-cluster: 'true' | ||
target: | ||
namespace: c2p |
Oops, something went wrong.