Questions tagged [aws-app-config]
41 questions
7
votes
3 answers
Amazon AppConfig from Spring Boot
How can I access configurations from aws appconfig, in my spring boot application?
Since appconfig is a new service, is there any java sdk that we can use, cos i dont see anything for appconfig yet in…

VIJ
- 1,516
- 1
- 18
- 34
5
votes
2 answers
aws cdk lambda, appconfig typescript example please?
Can anyone provide or point at an AWS-CDK/typescript example provisioning an AWS AppConfig app/env/config consumed by a lambda please? Could not find anything meaningful online.

Maxim Suponya
- 1,419
- 2
- 20
- 43
5
votes
2 answers
Can AppConfig be used for cross-account deployments?
I'm considering using AppConfig, but am struggling to understand how configurations would be used in a scenario where the Test and Staging deployments are in different accounts.
Having two completely different AppConfig setups in these two accounts…

Jon Nichols
- 2,211
- 1
- 20
- 21
5
votes
1 answer
Can't get configuration profile of AppConfig from AWS Lambda function
Lambda function - Node.js
const AWS = require('aws-sdk')
exports.handler = async (event) => {
var appconfig = new AWS.AppConfig({ apiVersion: '2019-10-09' })
var params = {
ApplicationId: '6xeris1',
ConfigurationProfileId: '0ck2ijf'
…

Kim-Jimin
- 674
- 2
- 9
- 19
3
votes
2 answers
Reading AWS AppConfig from .NET 6 Lambda Function
I've googled around but with no luck... I need to read some configuration values stored inside a AWS Systems Manager -> AppConfig configuration (stored as text, not flag) but I've not found a C# example...
I've also tried on the AWS Console to add…

advapi
- 3,661
- 4
- 38
- 73
3
votes
3 answers
What is the difference between AWS App Config and Code Deploy, and when to use each one
Both these services seem to do the similar things, when would you use each one.

Derrops
- 7,651
- 5
- 30
- 60
2
votes
1 answer
How to create-hosted-configuration-version for aws appconfig
In AWS AppConfig I created application Testing and configuration profile TestingFlags. I want to create hosted configuration version using CLI.
aws appconfig create-hosted-configuration-version --application-id APP_ID --configuration-profile-id…

Aleksander Gurin
- 153
- 5
2
votes
2 answers
AWS .NET Configuration Extension throwing 'Not implemented AppConfig type: application/octet-stream'
I am trying to use the AWS .NET Configuration Extension for Systems Manager Nuget package (Amazon.Extensions.Configuration.SystemsManager) to retrieve configurations stored in AWS Parameter Store.
I am using the following lines of code taken from…

biki
- 43
- 1
- 6
2
votes
1 answer
How to deploy AWS Appconfig hosted configuration version via AWS CLI
I have been following this document to create a hosted version in AppConfig via CLI.
Issue :
The content parameter in the aws command expects a strict type of blob. I want to upload a relative large yaml file of approx 40kB which is present in my…

Aagam Doshi
- 155
- 2
- 14
2
votes
1 answer
The provided role does not have sufficient permissions. (Service: AmazonAppConfig)
I created the following:
AppConfig, which have configurationProfile (the source is CodePipeline)
CodeCommit
CodeBuild
Code pipeline.
I configured code pipeline to deploy into AppConfig when a change happen to test.json file that exist in…

Hussein Hroub
- 51
- 3
2
votes
1 answer
Is there a way to know configurations updated in AWS AppConfig?
Currently, I'm polling after a fixed interval of time for fetching configurations from AWS AppConfig using getconfiguration API of aws-sdk for javascript. But, I want to fetch configurations only if there is any change in configurations at AWS…

Nandishwar Garg
- 73
- 7
2
votes
1 answer
AWS SDK for dot net core app to use AWS AppConfig
I'm trying to access application created in AWS AppConfig to retrieve the Configuration file. There's no proper documentation I found on the AWS Docs to receive the configuration through the dot net sdk using few methods.
ref:…

Sabir Piludiya
- 179
- 1
- 2
- 14
1
vote
1 answer
aws terraform, how to create feature flag instead of type freeform appconfig flag
Following is my appconfig code
resource "aws_appconfig_application" "feature_flag_app" {
name = "FFApplication"
description = "AppConfig Application for Lambda"
}
resource "aws_appconfig_environment" "feature_flag_app" {
name …

Vaibhav Mishra
- 11,384
- 12
- 45
- 58
1
vote
1 answer
How to set up Spring Boot datasource URL from AWS AppConfig?
So the title says pretty much it all. I have a spring-boot based Microservices and I need to supply everything which usually goes to application.properties via AWS AppConfig. How can I do this? I've created a sample project, but how can I do this…

Don_Quijote
- 936
- 3
- 18
- 27
1
vote
1 answer
I can't delete AWS appconfig configuration and environment
I'm studying about Appconfig to change my service from parameter store to Appconfig.
I have two applications in AWS Appconfig want to delete.
1.
application : TestApp
configuration(0 EA) : None
environment(1 EA) : test (has 2 deployments with…

Lazyer
- 917
- 1
- 6
- 16