SSM Parameter Store
Icon
About
Secure storage for configuration and secrets.
Has seamless encryption using KMS.
Serverless, scalable, durable and easy to use SDK.
Version tracking of configuration/secrets.
Security is provided through IAM.
Notifications with Amazon EventBridge.
Integration with CloudFormation.
Its also possible to access secrets of secret manager through parameter store available at this location.
/aws/reference/secretsmanager/<secret_ID_in_Secrets_Manager>There are also public parameters available at following hierarchy
/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2
Tiers
There are two types of tiers.

Parameter Policies
Allows to assign
TTLbased on which parameters will be deleted.Can assign multiple policies at a time.
Can be integrated with Event Bridge.
CLI
Get Parameters
aws ssm get-parameters --names <path-to-parameter> <path-to-parameter>Get Parameters with decryption
aws ssm get-parameters --names <path-to-parameter> --with-decryptionGet Parameters by path
aws ssm get-parameters-by-path --path <path>Get Parameters by path recursilvely
aws ssm get-parameters-by-path --path <path> --recursive
Last updated