#!/usr/bin/env bash # vim:ts=4:sts=4:sw=4:et # # Author: Hari Sekhon # Date: 2021-10-28 14:22:04 +0100 (Thu, 28 Oct 2021) # # https://github.com/HariSekhon/bash-tools # # License: see accompanying Hari Sekhon LICENSE file # # If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback to help steer this or other code I publish # # https://www.linkedin.com/in/HariSekhon # # https://circleci.com/docs/2.0/ip-ranges/ set -euo pipefail [ -n "${DEBUG:-}" ] && set -x srcdir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" # shellcheck disable=SC1090 . "$srcdir/lib/utils.sh" # shellcheck disable=SC2034,SC2154 usage_description=" Lists CircleCI public IP addresses eg. for auto-populating firewall rules You will also need to enable 'circleci_ip_ranges: true' in your job to use these fixed IPs (requires paid plan): https://circleci.com/docs/2.0/configuration-reference/#circleciipranges " # used by usage() in lib/utils.sh # shellcheck disable=SC2034 usage_args="" help_usage "$@" #curl -sSL https://dnsjson.com/all.knownips.circleci.com/A.json | #jq -r '.results.records[]' | #sort -n "$srcdir/dnsjson.sh" all.knownips.circleci.com