Questions tagged [aws-parameter-store]

The AWS Systems Manager Parameter Store offers a safe and organized way to store and manage configuration data as well as secrets. Don't forget to utilize the aws-ssm tag for easy organization.

Storing multiple parameters in AWS SSM using Terraform and a JSON configuration file

In the process of migrating a couple of legacy applications to ec2, we are faced with the challenge of storing multiple application configuration parameters individually. The goal is to have separate parameters for each application. The current approach s ...

Utilizing an AwsCustomResource in AWS CDK to access JSON values from a parameter store

I found a solution on Stack Overflow to access configurations stored in an AWS parameter. The implementation involves using the code snippet below: export class SSMParameterReader extends AwsCustomResource { constructor(scope: Construct, name: string, pr ...