-
-
Save kjm0001/cbc7c39761f72a3376faee329745c45e to your computer and use it in GitHub Desktop.
Revisions
-
bboure revised this gist
Dec 6, 2021 . 1 changed file with 3 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1 +1,3 @@ aws ssm get-parameters-by-path --path '/path/to/prams' --recursive \ | jq .Parameters[].Name \ | xargs -L1 -I'{}' aws ssm delete-parameter --name {} -
bboure created this gist
Dec 6, 2021 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1 @@ aws ssm get-parameters-by-path --path '/path/to/prams' --recursive | jq .Parameters[].Name | xargs -L1 -I'{}' aws ssm delete-parameter --name {}