Skip to content

Latest commit

 

History

History
8 lines (6 loc) · 316 Bytes

README.md

File metadata and controls

8 lines (6 loc) · 316 Bytes

ssm-public-documents

Collect the latest AWS SSM documents. These were acquired as follows:

aws ssm list-documents > list-documents.json
cat list-documents.json | jq -cr '.DocumentIdentifiers[].Name' | xargs -n1 sh -c 'aws ssm get-document --name $1 | jq ".Content|fromjson" > "documents/$1.json"' sh