Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
53 views

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/...
Aquaman's user avatar
  • 43
0 votes
1 answer
73 views

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 ...
Vicky's user avatar
  • 13
0 votes
0 answers
64 views

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 ...
Arpit S's user avatar
  • 305
0 votes
1 answer
102 views

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 ...
Varid Vaya's user avatar
1 vote
0 answers
317 views

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 ...
sa_'s user avatar
  • 77
0 votes
0 answers
616 views

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 ...
夢のの夢's user avatar
  • 6,018
1 vote
1 answer
766 views

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": [ { &...
tanGee's user avatar
  • 573
0 votes
1 answer
641 views

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 ...
am3005's user avatar
  • 3
0 votes
1 answer
815 views

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-...
Sankalpa Wijewickrama's user avatar
0 votes
0 answers
695 views

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"...
Mohammed Salah's user avatar
1 vote
1 answer
1k views

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 ...
Random Guy's user avatar
0 votes
0 answers
458 views

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 ...
alex's user avatar
  • 179
0 votes
0 answers
57 views

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 ...
vorant94's user avatar
  • 513
2 votes
1 answer
2k views

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) ...
Nae's user avatar
  • 15.5k
1 vote
0 answers
2k views

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 ...
UMR's user avatar
  • 361
2 votes
0 answers
681 views

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 ...
PGT's user avatar
  • 2,077
0 votes
1 answer
912 views

I have the following stored in AWS Systems Manager Parameter Store: "name_prefix"="base","os"="AmazonLinux2" I have the following Packer code: data "...
Steve's user avatar
  • 313
1 vote
1 answer
3k views

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&...
Hubert Bratek's user avatar
2 votes
2 answers
1k views

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 ...
Sahar Toledano's user avatar
5 votes
1 answer
7k views

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 ...
Hephaestus's user avatar
  • 5,203
2 votes
1 answer
730 views

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....
Som's user avatar
  • 1,610
0 votes
4 answers
4k views

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 ...
user19882964's user avatar
0 votes
1 answer
905 views

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 --> ...
Yahya's user avatar
  • 51
1 vote
1 answer
781 views

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?
NOUR's user avatar
  • 11
0 votes
1 answer
735 views

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 ...
Barbara Atkins's user avatar