Welcome back! In our previous lessons, we explored the AWS Secrets Manager using the AWS SDK (Boto3) for Python. Today, we will delve into another vital component of AWS's secrets management ecosystem — the AWS Systems Manager Parameter Store, or SSM Parameter Store for short.
SSM Parameter Store is a service that provides secure, hierarchical storage for configuration data and secrets management. It helps you manage data like passwords, database strings, Amazon Machine Image (AMI) IDs, and license codes as parameter values. You can store values as text strings or encrypted data. By using Parameter Store, you can separate your secret and configuration data from your code. For more detailed information, refer to the official AWS Systems Manager Parameter Store documentation.
To communicate with the SSM Parameter Store, we will be using our trusty assistant, the AWS SDK for Python — Boto3
, brushing up on what we have learned in previous lessons.
SSM Parameter Store supports three parameter types: String
, SecureString
, and StringList
.
-
: This type is used to represent plain text data. For example, it can store URLs, usernames, or any other configuration data represented as plain text.
