Skip to content

Commit

Permalink
Add INI ConfigStore to @configu/lib integrations (#248)
Browse files Browse the repository at this point in the history
  • Loading branch information
RichardAkman committed Sep 7, 2023
1 parent 9849c22 commit ab70a17
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions ts/packages/lib/src/integrations/store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ export type StoreType = LiteralUnion<
| 'in-memory'
| 'configu'
| 'json-file'
| 'ini-file'
| 'hashicorp-vault'
| 'aws-parameter-store'
| 'aws-secrets-manager'
Expand All @@ -26,6 +27,7 @@ export const STORE_LABEL: Record<StoreType, string> = {
'in-memory': 'In Memory',
configu: 'Configu',
'json-file': 'Json File',
'ini-file': 'INI File',
'hashicorp-vault': 'HashiCorp Vault',
'aws-parameter-store': 'AWS Parameter Store',
'aws-secrets-manager': 'AWS Secrets Manager',
Expand All @@ -46,6 +48,7 @@ export const STORE_WEBSITE: Record<StoreType, string> = {
'in-memory': '',
configu: 'https://configu.com/',
'json-file': 'https://www.json.org/json-en.html',
'ini-file': 'https://en.wikipedia.org/wiki/INI_file',
'hashicorp-vault': 'https://www.vaultproject.io/',
'aws-parameter-store': 'https://aws.amazon.com/systems-manager/features/#Parameter_Store',
'aws-secrets-manager': 'https://aws.amazon.com/secrets-manager/',
Expand Down

0 comments on commit ab70a17

Please sign in to comment.