Closed kmcquade closed 3 years ago
This would be an interesting one. Take a look at the table for DOD CC SRG here: https://aws.amazon.com/compliance/services-in-scope/.
DOD CC SRG
I think we'd want to have --dod as a separate command argument. The argument would be optional. If provided, the valid values would be IL2-EastWest, IL2-Govcloud, IL4, IL5, and IL6.
--dod
IL2-EastWest
IL2-Govcloud
IL4
IL5
IL6
You can require those values using click.Choice.
This would require a custom scraper to handle the DOD CC SRG table on the Services in Scope page.
Fixed by #58
@AMHesch - I forgot to mention. In #58 you didn't update the README to reflect the new command flags - do you think you could do that?
Thanks :)
This would be an interesting one. Take a look at the table for
DOD CC SRG
here: https://aws.amazon.com/compliance/services-in-scope/.Proposed solution
Command arguments
I think we'd want to have
--dod
as a separate command argument. The argument would be optional. If provided, the valid values would beIL2-EastWest
,IL2-Govcloud
,IL4
,IL5
, andIL6
.You can require those values using click.Choice.
Custom scraper
This would require a custom scraper to handle the DOD CC SRG table on the Services in Scope page.