A SysOps administrator is setting up configuration management for an application using AWS Systems Manager Parameter Store. The administrator needs to store standard environment variables and sensitive database passwords. Which two parameter types are supported by Parameter Store for these purposes? (Select TWO.)
- StringAnswer
- SecureStringAnswer
- CSecretString
- DEncryptedString
- ESecureList
Answer
The supported parameter types in Systems Manager Parameter Store are String (for plain text) and SecureString (for encrypted sensitive data).
Systems Manager Parameter Store officially supports String, StringList, and SecureString. Plain text values like environment variables are stored as String parameters, while sensitive credentials like database passwords are encrypted and stored as SecureString parameters using AWS KMS.
Step-by-Step Solution
Key Concept
AWS Systems Manager Parameter Store supports three parameter types: String, StringList, and SecureString. Plain text configuration data uses String, while sensitive information like passwords must use SecureString, which encrypts values using AWS KMS.