1.0.42 • Published 1 year ago

ybm-allow-list-management v1.0.42

Weekly downloads
-
License
ISC
Repository
github
Last release
1 year ago

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

1.0.42

1 year ago

1.0.41

1 year ago

1.0.28

1 year ago

1.0.26

1 year ago

1.0.25

1 year ago

1.0.24

1 year ago

1.0.22

1 year ago

1.0.23

1 year ago

1.0.21

1 year ago

1.0.20

1 year ago

1.0.18

1 year ago

1.0.19

1 year ago

1.0.17

1 year ago

1.0.16

1 year ago

1.0.13

1 year ago

1.0.12

1 year ago

1.0.11

1 year ago

1.0.10

1 year ago

1.0.9

1 year ago

1.0.8

1 year ago

1.0.7

1 year ago

1.0.6

1 year ago

1.0.5

1 year ago

1.0.4

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago