Skip to content

Commit

Permalink
Add AWS Parameter Store to @configu/lib integrations (#178)
Browse files Browse the repository at this point in the history
  • Loading branch information
RichardAkman committed Aug 1, 2023
1 parent b3c1930 commit 3daf0de
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 @@ -6,6 +6,7 @@ export type StoreType = LiteralUnion<
| 'configu'
| 'json-file'
| 'hashicorp-vault'
| 'aws-parameter-store'
| 'aws-secrets-manager'
| 'azure-key-vault'
| 'gcp-secret-manager'
Expand All @@ -25,6 +26,7 @@ export const STORE_LABEL: Record<StoreType, string> = {
configu: 'Configu',
'json-file': 'Json File',
'hashicorp-vault': 'HashiCorp Vault',
'aws-parameter-store': 'AWS Parameter Store',
'aws-secrets-manager': 'AWS Secrets Manager',
'azure-key-vault': 'Azure Key Vault',
'gcp-secret-manager': 'GCP Secret Manager',
Expand All @@ -43,6 +45,7 @@ export const STORE_WEBSITE: Record<StoreType, string> = {
configu: 'https://configu.com/',
'json-file': 'https://www.json.org/json-en.html',
'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/',
'azure-key-vault': 'https://azure.microsoft.com/en-us/services/key-vault/',
'gcp-secret-manager': 'https://cloud.google.com/secret-manager/',
Expand Down

0 comments on commit 3daf0de

Please sign in to comment.