aws cli ssm get parameter
aws ssm get-parameter \
--name "MySecureStringParameter" \
--with-decryption
--query 'Parameter.Value'
--output text
aws cli ssm get parameter
aws ssm get-parameter \
--name "MySecureStringParameter" \
--with-decryption
--query 'Parameter.Value'
--output text
aws cli list ssm parameters
# Be aware there might be throttling
# This goes through all your parameters in your parameter store.
# outputs in Json
for params in $(aws ssm describe-parameters)
do
echo $params
done
# you can also replace
# the code in brackets with: aws ssm describe-parameters --query 'Parameters[].Name'
# this will only output the parameter names in a list
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us