UNPKG
aws-simple-sso
Version:
latest (1.5.0)
1.5.0
1.4.0
1.3.1
1.3.0
1.2.2
1.2.1
1.2.0
1.1.0
1.0.1
1.0.0
Simple AWS SSO Sign-in
github.com/barneyparker/aws-simple-sso
barneyparker/aws-simple-sso
aws-simple-sso
/
example.js
10 lines
(9 loc)
•
203 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{ authenticate }
from
'./index.js'
/** * Just a main func! */
const
main
=
async
(
) => {
const
credentials =
await
authenticate
(
'Prod'
,
'sre_dev'
,
'Admin'
)
console
.
log
(credentials) }
main
()