This repository has been archived on 2022-11-03. You can view files and clone it, but cannot push or open issues or pull requests.
DevOpsOpenHack/iac/terraform/myip.sh
2022-11-03 16:41:13 -04:00

5 lines
134 B
Bash

#!/bin/bash
set -e
MYIP="$(dig +short myip.opendns.com @resolver1.opendns.com -4)"
echo $(jq -n --arg MYIP "$MYIP" '{"my_ip":$MYIP}')