File tree Expand file tree Collapse file tree 3 files changed +19
-1
lines changed
Expand file tree Collapse file tree 3 files changed +19
-1
lines changed Original file line number Diff line number Diff line change 1+ import { Provider } from '.' ;
2+ import AwsSvg from '@site/static/img/aws-no-fill.svg' ;
3+
4+ export const AwsSSM : Provider = {
5+ name : 'AWS SSM' ,
6+ logo : AwsSvg ,
7+ technologies : [
8+ {
9+ technology : 'JavaScript' ,
10+ vendorOfficial : false ,
11+ href : 'https://github.com/open-feature/js-sdk-contrib/tree/main/libs/providers/aws-ssm' ,
12+ category : [ 'Server' ] ,
13+ } ,
14+ ] ,
15+ } ;
Original file line number Diff line number Diff line change 11import type { ComponentType , SVGProps } from 'react' ;
22import { Category , EcosystemElement , Technology } from '../types' ;
33import { ABTasty } from './abtasty' ;
4+ import { AwsSSM } from './awsssm' ;
45import { Bucket } from './bucket' ;
56import { Bucketeer } from './bucketeer' ;
67import { CloudBees } from './cloudbees' ;
@@ -28,7 +29,6 @@ import { ConfigBee } from './configbee';
2829import { Tggl } from './tggl' ;
2930import { OFREP } from './ofrep' ;
3031import { SDKS } from '../sdks' ;
31-
3232const childTechnologyMap = SDKS . reduce (
3333 ( acc , sdk ) => {
3434 if ( sdk . parentTechnology && ! sdk . skipParentTechnologyProviders ) {
@@ -45,6 +45,7 @@ const childTechnologyMap = SDKS.reduce(
4545
4646export const PROVIDERS : Provider [ ] = [
4747 ABTasty ,
48+ AwsSSM ,
4849 Bucket ,
4950 Bucketeer ,
5051 CloudBees ,
You can’t perform that action at this time.
0 commit comments