922 questions
0
votes
0
answers
93
views
AWS Secrets Manager key causes 401 Unauthorized when fetched in ASP.NET Core, but works as plain text in Elastic Beanstalk
Whenever I try to pass the API key for Mistral AI into the backend through secrets manager, I get an error "401: unauthorized". When stored as plain text in the environment variables in ...
0
votes
1
answer
111
views
GitHub Actions workflow_dispatch inputs not showing in Actions tab
I’m trying to create a GitHub Actions workflow that manages AWS Secrets Manager (create/read/update/delete). The workflow should only run manually using workflow_dispatch, because it requires user ...
1
vote
1
answer
307
views
AWS Secret in ECS task got random network issues
In my ECS cluster, I got a task that is run via the ECS scheduler. This a Fargate in awsvpc. I have hard time to resolve this error message below, knowing that for another task it works fine and one ...
0
votes
1
answer
47
views
Does codebuild make multiple calls to secret manager if secret names are the same?
I am storing database credentials in Secret Manager as a stringified JSON. I want CodeBuild to fetch the secret and then set one of the JSON params as an environment variable. If I do this multiple ...
1
vote
0
answers
52
views
SAM CLI Lambda container cannot connect to LocalStack Secrets Manager on macOS:
"Could not connect to the endpoint URL: http://localhost:4566/
I'm developing a FastAPI-based Lambda function using AWS SAM CLI for local testing on macOS, with LocalStack emulating Secrets ...
0
votes
0
answers
107
views
Can I update a Terraform write-only attribute based on a dynamic, non-integer value?
I'd hoped to bind a write-only Terraform resource attribute to the value of an AWS SecretsManager secret, using the secret version ID to trigger an update. For example,
something like
data "...
0
votes
0
answers
344
views
How to load secrets from a Secret Manager into Laravel before the application boots and keep them synced across load-balanced instances?
I'm working on a Laravel application hosted behind a load balancer with multiple instances. Instead of relying solely on the .env file, I'm pulling sensitive configuration values (API keys, DB ...
0
votes
1
answer
1k
views
Power BI REST API – Missing Application Permissions (Dataset.ReadWrite.All etc) for Service Principal
I'm building an automation pipeline to publish Power BI reports via REST API from AWS Lambda using a registered Azure app (service principal).
My Azure App is registered successfully, and I’ve ...
4
votes
1
answer
367
views
Access denied to AWS Secrets Manager API for BatchGetSecretValue, while GetSecretValue works
I have configured an AWS IAM policy to allow all access to secretsmanager on all resources:
{
"Version": "2012-10-17",
"Statement": [
{
"...
0
votes
1
answer
612
views
Problems loading Spring Cloud Secrets Manager
I've added the following to my Gradle project to load Spring's AWS Secret Manager features:
plugins {
id 'org.springframework.boot' version '3.4.3'
id 'io.spring.dependency-management' version ...
0
votes
1
answer
108
views
AWS Secrets Manager SDK Java 2.x with Redhat Fuse 7.13
I have a legacy fuse utility bundle which has a code logic to get secret code with AWS SDK Java 1,Now I am trying to convert them to use AWS SDK Java-2.30.3. I have added the secretmanager dependency ...
1
vote
2
answers
1k
views
Spring Boot: 'Unable to load region' error despite disabling Secrets Manager in local profile
I just created a empty spring boot application using Maven with the following dependencies:
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
...
0
votes
0
answers
204
views
Using custom trust store in Spring Boot (AWS Lambda, AWS Secrets Manager) - PKIX certificates error
I'm working on AWS Lambda in Spring Boot framework.
I used code from below link do load certificates from files because I was getting PKIX path building failed: sun.security.provider.certpath....
0
votes
2
answers
92
views
Storing AWA Secrets from SecretManager to Repository
Would like to understand does anyone commits the AWS Secret Manager CloudFormation file to private repository ?
If not how should the team manage the changes and version control the configuration ?
1
vote
1
answer
516
views
spring cloud secrets manager 3.2.0 not refreshing @Value
I am using Spring Cloud Secrets Starter for secrets manager on AWS; here is my dependency. I am running on springboot > 3.2.10. I am using kotlin and the values load correctly on startup but don't ...