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

ybm-allow-list-management

v1.0.42

Published

Module to update Allow List on YugabyteDB Managed (SaaS) dynamicallynpm install --save-dev babel-jest

Downloads

26

Readme

YugabyteDB Managed - Allow List Management

Build

This module can help in dynamically updating allow list in case of serverless / PaaS environments where egress IPs are dynamic.

This is developed particularly to support accessing YugabyteDB Managed instance from [fly.to]. This uses YBM APIs to update the network allow list at runtime

Features

  1. Create versioned allow list
  2. Easy to override or configure manually, just follow the naming conventions
  3. Create new version on each run
  4. Skips version creations on duplicate updates
  5. Dis-associated old version from cluster.
  6. Keeps existing association from older version

Example

// Make sure YBM_API_KEY. YBM_PROJECT_ID and YBM_ACCOUNT_ID are defined in the environment
import { update } from "ybm-allow-list-management";
let prefix = "myapp-allow-list"
// Find your apps egress IP
let egressIp = await fetch("https://ifconfig.me/ip",)
  .then(res => {
    return res.text();
  })
  .then(ipAddress => `${ipAddress}/32`);
// Get it from the YBM console address bar
let clusterId = '<cluster-uuid>'

console.log("Egress IP: " + egressIp);

let allowList = await update(prefix, egressIp, clusterId);
console.log("Allow list name " + allowList.spec.name);

Code above will go create an allow list with prefix myapp-allow-list. If there is any existing list matching myapp-allow-list--v# format, it will create new list by addin +1 to version. It will copy over existing ip addresses and cluster ids from older version.

Environment Variables

Following environment variables are used by this module

  • YBM_API_KEY - (Required) YugabyteDB Managed - Api Key
  • YBM_ACCOUNT_ID - (Required) YugabyteDB Managed - Account ID
  • YBM_PROJECT_ID - (Required) YugabyteDB Managed - Project ID
  • YBM_ENDPOINT - (Optional) YugabyteDB Managed - Endpoint URL (Default: https://cloud.yugabyte.com/api)
  • YBM_MAX_RETRY - (Optional) Maximum retry for api requests (Default : 30)
  • YBM_RETRY_INTERVAL - (Optional) Internal (seconds) between api requests (Default : 2)
  • YBM_CLUSTER_ID - (Test Only) YugabyteDB Managed - Cluster ID
  • YBM_ALLOW_LIST_PREFIX - (Test Only) Prefix for allow list name
  • NODE_ENV - (Test Only) Set to development for debug logs

Develop

TBA

Get in Touch

Get in touch via YugabyteDB Community Slack