Skip to content

Commit

Permalink
Add SRG-APP-CTR parser
Browse files Browse the repository at this point in the history
Parse the SRG Container Platform references in the content add
annotations for them.
  • Loading branch information
yuumasato committed Mar 4, 2024
1 parent c2010cb commit 4b1088a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pkg/profileparser/profileparser.go
Original file line number Diff line number Diff line change
Expand Up @@ -826,6 +826,10 @@ func newStandardParser() *referenceParser {
if stigperr != nil {
log.Error(nciperr, "Could not register STIG reference parser") // not much we can do here..
}
srgperr := p.registerStandard("SRG-APP-CTR",`^https://public\.cyber\.mil/stigs/downloads/\?_dl_facet_stigs=container-platform$`)
if srgperr != nil {
log.Error(nciperr, "Could not register SRG-APP-CTR reference parser") // not much we can do here..
}

p.registerFormatter(profileOperatorFormatter)
p.registerFormatter(rhacmFormatter)
Expand Down

0 comments on commit 4b1088a

Please sign in to comment.