@linkedmink/node-route53-dynamic-dns
TypeScript icon, indicating that this package has built-in type declarations

1.1.0 • Public • Published

Node Route53 Dynamic DNS

Build Status NPM Version Docker Image Size

This is a NodeJS background process that updates AWS Route 53 DNS address records whenever the public IP of the hosting environment changes. This can be useful for home or small business networks where an ISP doesn't issue a static IP.

  • Supports multiple records in multiple zones
  • Supports IPv6
  • Supports containers (tested with Docker)
  • Simple HTTP server
    • Can be used for health checks
    • Outputs current IP and managed records

Prerequisites

  • NodeJS >= 18 (Tested)
  • Hosted Zones with AWS Route 53

Usage

The README will focus on running the app as a user (see Additional Documentation for build and dev info)

Base Package

You can run the npm package as a self-contained executable. Install the package globally.

npm install -g @linkedmink/node-route53-dynamic-dns

The app can be configured using a .env file in the current working directory. See the template.env for defaults and comments about the allowed options. Alternatively you can use environment variables with names matching the keys in template.env.

Configure an AWS IAM user with access to the zones and records you wish to update. If you have a user with permissive access (an admin), you can run the bundled script to geneate a restrictive access policy for the specific zones and records you want to update. Set AWS_ACCESS_KEY_ID, AWS_ACCESS_KEY_SECRET to a user with access, and change the target records in HOSTNAMES_TO_UPDATE.

npx node-route53-dynamic-dns iam-policy

After the configuration has been set, execute the packages main command.

npx node-route53-dynamic-dns

Containers

You can run the app on any container runtime like Docker and configure it using environment variables and/or mounted files. A Docker image has been built and published to Docker Hub. An example configuration docker-compose.yml file is included in the repo. It has configuration to mount the secrets.env as Docker secret. Copy the files and edit them as needed (see template.env).

cp docker/{docker-compose.yml,secrets.env} /my/docker/config/path

# Change AWS_ACCESS_KEY_ID, AWS_ACCESS_KEY_SECRET, and HOSTNAMES_TO_UPDATE at minimum
cd /my/docker/config/path
nano docker-compose.yml
nano secrets.env

# Test out the configuration
sudo docker compose up
# Run the app in the background
sudo docker compose up -d

Additional Documentation

  • Alternative Usage: Some additional examples of running the app on various systems
  • Developing: You can modify, build, and run the app as you see fit. If you have a useful modification or fix, consider contributing.

Package Sidebar

Install

npm i @linkedmink/node-route53-dynamic-dns

Weekly Downloads

0

Version

1.1.0

License

MIT

Unpacked Size

428 kB

Total Files

109

Last publish

Collaborators

  • linkedmink