Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

aws-url

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aws-url

`aws-url` is a tool that generates AWS console url from the temporary credentials stored in environment variables.

  • 1.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

aws-url

aws-url is a tool that generates AWS console url from the temporary credentials stored in environment variables.

Installation

npm install -g aws-url

Usage

# Set credentials in env variables
export AWS_ACCESS_KEY_ID=...
export AWS_SECRET_ACCESS_KEY=...
export AWS_SESSION_TOKEN=...

# Execute the command
aws-url

# Output:
# https://signin.aws.amazon.com/federation?Action=login&Destination=https%3A%2F%2Fconsole.aws.amazon.com%2F&SigninToken=...

Usage from node.js

# In your project dir
npm install --save aws-url
const getConsoleUrl = require('aws-url');

const credentials = {
  awsAccessKeyId: 'access key id',
  awsSecretAccessKey: 'secret access key',
  awsSessionToken: 'session token',
};

getConsoleUrl(credentials)
  .then(url => console.log(`The console url is ${url}`))
  .catch(err => console.error(`Error: ${err.message}`)
);

Keywords

FAQs

Package last updated on 11 Feb 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc