Skip to content

epomatti/azure-app-configuration

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Azure App Configuration sandbox

Sandbox with App Config.

Run

Create the app configuration resource:

cd infra

terraform init
terraform apply -auto-approve

Set the connection string as parameter:

export APP_CONFIGURATION_CONNECTION_STRING='connection-string-of-your-app-configuration-store'

Build and run the application:

mvn clean package
mvn spring-boot:run

Check the parameter value:

curl localhost:8080/message

Change the message and then update the refresh trigger. Check the message again to see the update value.

az appconfig kv set --key sentinel --value 2 --name <name-of-your-new-store> --yes

This will use the Feature capability from the API:

curl localhost:8080/beta

Reference

Releases

No releases published

Packages

No packages published