Questions tagged [aws-app-config]

41 questions
0
votes
1 answer

How to retrieve AWS AppConfig flags from an Angular app with AWS SDK

We AWS AppConfig to manage our feature flag, I am trying to follow this doc: https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-appconfig/index.html but documentation is not so clear, can anyone help me with fetching feature flags…
Suraj Kumar
  • 281
  • 6
  • 13
0
votes
0 answers

How can I get all versions of a configuration in AWS AppConfig

I have created a configuration in AWS AppConfig with multiple versions. How can I retrieve the content for every configuration version within a single request?
Zigzagoon
  • 787
  • 6
  • 16
0
votes
1 answer

AWS AppConfig onboarding doubts

I need to change configuration values without requiring deployment of code changes. I had the following doubts related to using AWS AppConfig to confirm it is applicable for my use case. What actually happens in an AWS AppConfig deployment? Will…
0
votes
2 answers

How to Access AWS AppConfig in .Net Core

I want to access config files from AWS AppConfig in .Net Core (AWS Lambda). How can I do that? I have seen in the AWS docs that the recommended way is to use the GetLatestConfiguration and StartConfigurationSession APIs but I am unable to find the…
0
votes
1 answer

AWS AppConfig flags with SNS Topics

I've set up an AWS SNS Service that sends an email to a specific address and calls a webhook to notify an external application that a job is completed. I've been asked to enable/disable one of the two subscriptions based on a flag that I've set…
advapi
  • 3,661
  • 4
  • 38
  • 73
0
votes
1 answer

how to dynamically assume a role to access DynamoDB from a Lambda using appConfig?

I have two AWS stacks : one has a dynamoDB table and "exports" (to appConfig) the tableArn, tableName and tableRoleArn (which ideally should allow access to the table). import { App, Stack, StackProps } from '@aws-cdk/core'; import * as dynamodb…
Luke_P
  • 659
  • 2
  • 7
  • 23
0
votes
1 answer

AWS AppConfig Validation Lambda Policy in SAM Template

I’m trying to add a policy to a lambda to allow AppConfig to invoke it. I can do this through the terminal using this command: aws lambda add-permission --function-name ConfigValidator.Arn --action lambda:InvokeFunction --statement-id appconfig…
0
votes
1 answer

AWS: Lambda, VPC and endpoints for SecretManager and AppConfig

We have a Lambda who needs to be connected to an VPC in order to mount an EFS volume. This lambda needs too connect to AWS SecretManager and AWS AppConfig. To reach AWS secret manager we create a endpoint (interface type) to the service called…
0
votes
1 answer

Content field is Empty when Accessing through AWS PHP SDK and AWS AppConfig

Everyone does anyone have an idea of how to use AWS AppConfig with the AWS SDK PHP. My Particular use case is, I am running a simple PHP app on the EC2 instance and want to receive the JSON configurations written in the AppConfig. use…
raj
  • 141
  • 2
  • 4
0
votes
1 answer

Architecture for AWS configuration application

I am creating an application which should only store some configuration. I am using AWS AppConfig as the configuration store. I want to be able to update this configuration data through code. So when an event happens, I want to call SQS to create a…
-1
votes
1 answer

Managing configuration files for multiple instances of the same application (same environment)

I have multiple instances of the same engine running as windows services on the same environment and system that just have slightly different connection strings as they point to different queues. Other than a couple of lines in the conifg (XML) the…
1 2
3