Skip to content

Commit

Permalink
Merge pull request #5 from IBM/saikumar1607-202403161917
Browse files Browse the repository at this point in the history
add support for eu-de region
  • Loading branch information
ibm-cloud-appconfiguration authored Mar 17, 2024
2 parents 5475635 + 1da4c06 commit d050398
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 12 deletions.
8 changes: 1 addition & 7 deletions .cra/.cveignore
Original file line number Diff line number Diff line change
@@ -1,7 +1 @@
[
{
"cve": "SNYK-JS-INFLIGHT-6095116",
"comment": "Dev Dependency.",
"expiration": "2024-02-28T00:00:00+05:30"
}
]
[]
2 changes: 1 addition & 1 deletion .secrets.baseline
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"files": "package-lock.json|^.secrets.baseline$",
"lines": null
},
"generated_at": "2024-02-05T09:40:58Z",
"generated_at": "2024-03-16T19:19:08Z",
"plugins_used": [
{
"name": "AWSKeyDetector"
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ where,
- `eu-gb` for London
- `au-syd` for Sydney
- `us-east` for Washington DC
- `eu-de` for Frankfurt
- **guid** : Instance ID of the App Configuration service. Obtain it from the service credentials section of the App Configuration dashboard.
- **apikey** : ApiKey of the App Configuration service. Obtain it from the service credentials section of the App Configuration dashboard.
- **collectionId**: ID of the collection created in App Configuration service instance under the **Collections** section.
Expand Down
2 changes: 1 addition & 1 deletion example/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
## Step 1: Create an instance of App Configuration service
- Log in to your IBM Cloud account.
- In the [IBM Cloud catalog](https://cloud.ibm.com/catalog#services), search **App Configuration** and select [App Configuration](https://cloud.ibm.com/catalog/services/app-configuration). The service configuration screen opens.
- **Select a region** - Currently, Dallas (us-south), London (eu-gb), Sydney (au-syd) and Washington DC (us-east) regions are supported.
- **Select a region** - Currently, Dallas (us-south), London (eu-gb), Sydney (au-syd), Washington DC (us-east) and Frankfurt (eu-de) regions are supported.
- Select a pricing plan, resource group and configure your resource with a service name, or use the preset name.
- Click **Create**. A new service instance is created and the App Configuration console displayed.

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ibm-appconfiguration-js-client-sdk",
"version": "0.1.0",
"version": "0.1.1",
"description": "IBM Cloud App Configuration JavaScript Client SDK",
"keywords": [
"client-sdk",
Expand Down
2 changes: 2 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -207,4 +207,6 @@ export default class AppConfiguration {
public static REGION_AU_SYD = 'au-syd';

public static REGION_US_EAST = 'us-east';

public static REGION_EU_DE = 'eu-de';
}

0 comments on commit d050398

Please sign in to comment.