191 questions
0
votes
0
answers
53
views
Spring Boot app using AWS Parameter Store does not reflect updated values even after container restart (requires redeployment)
I have a Spring Boot application running in a container.
I configured AWS Parameter Store integration using:
/application/env/version/1.0/SPRING_CONFIG_IMPORT = aws:parameterstore:/application/env/...
0
votes
1
answer
73
views
Deployment Not Using Latest SSM Parameter Store Version
I’m using Terraform to manage AWS AppConfig with configuration stored in SSM Parameter Store. When I update the SSM parameter, a new hosted configuration version is created (e.g., current version is ...
0
votes
0
answers
64
views
Disable loading of aws parameter store for local/default profile (Spring Boot 3.X, JDK 21)
Spring Boot App (3.x and JDK 21) starts fine with local/default profile (application-default.yaml) using h2, but it gives warning trying to load values from AWS parameter store (with import in ...
0
votes
1
answer
102
views
Unable to Represent Micronaut Application Properties with Array of Object in AWS Parameter Store
How do I store a Micronaut application properties with array of object in AWS Parameter Store since we can't have square brackets in the parameter name of AWS Parameter Store?
Here's a snippet of ...
1
vote
0
answers
317
views
Access ssm parameter store parameters in cross account
I have my ssm parameter store set up in one of the aws account (account Source). I want to access the parameters in another aws account (account target). Earlier parameter store did not directly allow ...
0
votes
0
answers
616
views
How to configure client side Spring Cloud Config backed with AWS Parameter Store
I am trying to load configurations from AWS Parameter Store ("/application/foo") so that I can dynamically set the configurations at runtime. I've used Spring Cloud Config Consul prior but ...
1
vote
1
answer
766
views
CDK - Configuring an ECS Fargate container with secret from Parameter Store without a Cloudformation parameter being created
I'm trying to migrate my existing ECS cluster to CDK and am having issues with secrets.
In my original definition JSON, it's configured using valueFrom as below:
"secrets": [
{
&...
0
votes
1
answer
641
views
Environment Variables For React App in AWS EC2
I have a basic weather app built with React (Vite). I'm making an API call to the OpenWeather API. In my dev environment, I used a .env file.
I'm trying to host it now on AWS EC2 (Linux). I'm using ...
0
votes
1
answer
815
views
How to set Spring boot HashMap in AWS Paramstore value and read via @ConfigurationProperties?
In my spring boot application I have some externalized configuration properties read from AWS Parameter Store. I do not use AWS SSM Client directly and extract the properties. I am using the spring-...
0
votes
0
answers
695
views
How to fetch all data from ssm parameter store in key value pairs using Terraform?
I'm trying to fetch all data from ssm parameter store in key value pairs using Terraform
I found this:
data "aws_ssm_parameter" "parameter" {
name = "/path/to/parameter"...
1
vote
1
answer
1k
views
IAM Policy for Parameter Store using Parameter tag
I am quite new to whole AWS ecosystem so please bear with me. I am trying to come up with IAM policy by which I will allow certain groups to manage parameters in AWS Systems Manager Parameter Store.
I ...
0
votes
0
answers
458
views
Not able to access environment variables with spring.config.import
I have used spring.config.import feature to import values from AWS parameter store in my springboot application. But not able to access the imported values in my service class. Please help.
In aws ...
0
votes
0
answers
57
views
AWS Amplify advanced tier lambda secrets
there
I have some private key in the scope of my amplify app, that lambda needs to use it to make a 3-party service call. The key is too long to be stored in standard tier parameter, it should be ...
2
votes
1
answer
2k
views
How to get Parameter Store Parameters by path when using Lambda Layer?
How to get all parameter name value pairs with a single call to AWS-Parameters-and-Secrets-Lambda-Extension (arn:aws:lambda:eu-west-1:015030872274:layer:AWS-Parameters-and-Secrets-Lambda-Extension:4)
...
1
vote
0
answers
2k
views
URLError: <urlopen error [Errno 97] Address family not supported by protocol>
I am trying to get secure string variable stored AWS parameter store, from AWS lambda. I follow this document, and have already deploy this code to lambda layer
# parameter_store_extension.py
import ...
2
votes
0
answers
681
views
Set Docker container env var at run time via AWS SSM Parameter Store
I have a bit of a weird setup. I have a raw EC2 instance where I will run Docker containers. I want to set up some sort of CI/CD using CircleCI and WatchTower
Basically what will happen is WatchTower ...
0
votes
1
answer
912
views
Why am I getting "Missing key/value separator" when using packer convert function
I have the following stored in AWS Systems Manager Parameter Store:
"name_prefix"="base","os"="AmazonLinux2"
I have the following Packer code:
data "...
1
vote
1
answer
3k
views
AWS Parameter Store for Java Spring Boot 3.0
Hi,
I have the problem with configuration of the spring boot parameter store for spring-boot 3.0 application.
I have added the following dependencies
<dependency>
<groupId&...
2
votes
2
answers
1k
views
How to set expiration time to parameter in ParameterStore aws .NET C#?
I'm trying to store value in parameter store and to define TTL (Time To Live) for this value using C#, .NET with PutParameterRequest.
How should I do it ?
This is how I'm saving the parameter for now ...
5
votes
1
answer
7k
views
Using Terraform to load a single file from git repo
We want to load a file from a git repo and place it into a parameter store. The file contains configuration data that is custom to each of several organizational-accounts, which are being constructed ...
2
votes
1
answer
730
views
How to override bootstrap.properties OR how to ignore cloud config for local environment in spring boot
I have an application [Spring boot app] which runs in local, dev env. I have used AWS parameter store configuration in bootstrap.properties file as below :
aws.paramstore.enabled = true
aws.paramstore....
0
votes
4
answers
4k
views
How to make a condition when the ssm parameter does not exist
I'm creating a python code to insert multiple parameters to the parameter store.
The code I have already works as I wish, but I need to make a condition that if the parameter already exists it simply ...
0
votes
1
answer
905
views
Out of Sync cdk stacks
I am searching for a solution to avoid an OUT OF SYNC issue between 2 stacks.
Stack B is exposing a value from Parameter Store created through Stack A.
When I delete and recreate the stack A --> ...
1
vote
1
answer
781
views
Gitlab & AWS parameter store
We want to save all our AWS accounts credentials in AWS parameter store for better security.
now the question is:
How can we use the credentials stored in AWS parameter store in GitLab for deployment?
0
votes
1
answer
735
views
Unable to get database credentials from AWS parameter store in time to make DB connection after Spring Boot upgrade to 2.7.2
I recently upgraded a Spring Boot microservice from v2.6.7 to v2.7.2. In the code, we retrieve database credentials from an AWS parameter store and use them to connect to a Postgres database. We ...