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

5 lines
134 B
Bash
Raw Normal View History

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