Create Freeform Feature Flag from S3 Object
If you have a configuration file and you want to use it instead of re-creating everything from scratch.
Table of Contents
Get Yours Today
Discover our wide range of products designed for IT professionals. From stylish t-shirts to cutting-edge tech gadgets, we've got you covered.
If you have a configuration file and you want to use it instead of re-creating everything from scratch. Then you can still use it instead of AWS AppConfig’s feature flags.
Must Read:
If you have gone through the previous lessons, then I assume you already have an application set up in the AWS AppConfig. So I will leverage the same app with a different set of Config Profile. If not then you can read this article to understand AppConfig’s concept.
Step 01: Create a new file in any format (Text, JSON, Yaml, others)
I will use the JSON format to make it easy for me.
File Name: Config.json
{
"phone_Login": {
"enabled": false
},
"social_logins": {
"enabled": true,
"facebook": false,
"facebook_css_style": "dark",
"google": true,
"google_css_style": "light"
}
}