mirror of
https://github.com/inspec/inspec
synced 2024-11-23 05:03:07 +00:00
provided a different example status for a profile in an exec_json since 'loaded' is different from the other usual possibilities and also is going to be the presumably most common status
Signed-off-by: Amndeep Singh Mann <amann@mitre.org>
This commit is contained in:
parent
9f98ea0ecd
commit
2c01ffb754
1 changed files with 1 additions and 1 deletions
|
@ -102,7 +102,7 @@ module Inspec
|
|||
|
||||
# These are generated at runtime, and all except status_message and skip_message are guaranteed
|
||||
"sha256" => Primitives.desc(Primitives::STRING, "The checksum of the profile."),
|
||||
"status" => Primitives.desc(Primitives::STRING, "The status. Example: skipped."),
|
||||
"status" => Primitives.desc(Primitives::STRING, "The status. Example: loaded."), # enum? loaded, failed, skipped
|
||||
"status_message" => Primitives.desc(Primitives::STRING, "The reason for the status. Example: why it was skipped or failed to load."),
|
||||
"skip_message" => Primitives.desc(Primitives::STRING, "The reason for skipping if it was skipped."), # Deprecated field - status_message should be used instead.
|
||||
"controls" => Primitives.desc(Primitives.array(CONTROL.ref), "The set of controls including any findings."),
|
||||
|
|
Loading…
Reference in a new issue