npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@xapp/serverless-transfer-cf-outputs-plugin

v0.0.21

Published

This is a plugin that can be used by Serverless transfer CloudFormation output items from another region.

Downloads

893

Readme

serverless-transfer-cf-outputs-plugin

This Serverless plugin will transfer CloudFormation output variables from one region to another.

Why would you want to do this?

In case you have a resource that only exists in one region, but you have resources in other regions which want talk to this resource. You can output the ARN or URL of that resource like you normally would, this plugin will import them to other Serverless projects.

Install

npm install --save-dev @xapp/serverless-transfer-cf-outputs-plugin

How

Say you have a Redshift server in the us-east-1. The serverless.yml would be something like this:

serverless.yml

provider:
    ...
    region: us-east-1
    ...

resources:
    Resources:
        myRedshift:
            Type: "AWS::Redshift::Cluster"
            Properties:
                AutomatedSnapshotRetentionPeriod: 7
                ClusterType: "single-node"
                DBName: "mydatabase"
                MasterUsername: "master_user"
                MasterUserPassword: ${ssm:super-secret-password~true}
                NodeType: dc2.large
                ... Further properties

    Outputs:
        RedshiftAddress:
            Value:
                Fn::GetAtt:
                    - myRedshift
                    - Endpoint.Address
            Export:
                Name: redshift-MyRedshiftAddress

            RedshiftPort:
            Value:
                Fn::GetAtt:
                    - myRedshift
                    - Endpoint.Port
            Export:
                Name: redshift-MyRedshiftPort

This is only going to be deployed in one region. It's annoying because the address of this can not be guessed or you have to manually hunt it down and hardcode it in other serverless.yml files which are multi-region.

That's where this plugin comes in. You can create a multi-region Serverless package and import both the port and address of the redshift server.

serverless.yml

plugins:
  - "serverless-transfer-cf-outputs-plugin"

config:
    cfTransfer:
        regions:
            - region: us-east-1
              cfOutputs:
                - redshift-MyRedshiftAddress
                - redshift-MyRedshiftPort

functions:

    myLambdaWhichTalksToRedshift:
        handler: Handler.handler
        role: MyLambdaWhichTalksToRedshiftRole
        environment:
            REDSHIFT_ADDRESS:
                Fn::ImportValue: redshift-MyRedshiftAddress
            REDSHIFT_PORT:
                Fn::ImportValue: redshift-MyRedshiftPort

... The remaining setup.

If deploying in regions other than us-east-1, the plugin will scan the serverless.yml file and replace the Fn::ImportValue statements with the correct exported value from the us-east-1 CloudFormation stack.

Config

The config for this plugin must always be cfTransfer. The full details are:

config:
   cfTransfer:
    config:
      ## Optional: This is the profile which has access to the CloudFormation stack. If not provided, then `default` is used.
      awsProfile: <profile>
    regions:
          ## Required: This is the region the values are exported from.
        - region: <region>
          ## Required: These are the values which are to be imported from the CloudFormation stacks.
          cfOutputs:
            - <output>