Socket
Socket
Sign inDemoInstall

@syngenta-digital/acp

Package Overview
Dependencies
2
Maintainers
3
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @syngenta-digital/acp

A simple npx command to set up aws config during a CICD environment


Version published
Weekly downloads
1.1K
decreased by-29.4%
Maintainers
3
Install size
492 kB
Created
Weekly downloads
 

Readme

Source

AWS CICD Profiler

A simple npx command to set up aws config during a CICD environment

Features

  • Ability to create AWS config files for use with roles
  • Support both yml and json files

Installation & Usage

This is a Node.js module available through the npm registry.

Before installing, download and install Node.js. Node.js 0.10 or higher is required.

$ npx @syngenta-digital/acp --key $AWS_ACCESS_KEY_ID --secret $AWS_SECRET_ACCESS_KEY --file some-dir/profiles.yml

# or if you have already set AWS environment variables

$ npx @syngenta-digital/acp --file some-dir/profiles.json
Flag NameRequiredDescription
filetrueThe file which lists all the profiles; relative path. Supports yml or json
keyfalseThe AWS access key of source account; can use environment variables (AWS_ACCESS_KEY_ID)
secretfalseThe AWS access secret of source account; can use environment variables (AWS_SECRET_ACCESS_KEY)

Example YML File

profiles:
    -
        name: dev
        account: 111222333444
        role: AutomatedCICDUser

Example JSON File

{
    "profiles": [
        {
            "name": "dev",
            "account": 111222333444,
            "role": "AutomatedCICDUser"
        }
    ]
}

Keywords

FAQs

Last updated on 29 Oct 2020

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc