Skip to content

Instantly share code, notes, and snippets.

@softprops
Created October 22, 2018 23:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save softprops/71d57a4772832a2390248f34f9bfc929 to your computer and use it in GitHub Desktop.
Save softprops/71d57a4772832a2390248f34f9bfc929 to your computer and use it in GitHub Desktop.
# store a secure string
$ aws ssm put-parameter \
--name /demo/foo
--value bar
--type SecureString
# store a string list
$ aws ssm put-parameter \
--name /demo/bar \
--value baz,boom,zoom \
--type StringList
# store a plain text string
$ aws ssm put-parameter \
--name /demo/zar
--value 42
--type String
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment