Python script for creating/updating an OPNsense alias with the IP networks used by Google for its APIs and services.
This is done by removing the set of IPs handed out to Google Cloud customers from the set of all publicly accessible Google IPs.
See https://support.google.com/a/answer/10026322 for more information.
The list of CIDR-notation IP networks can also be printed to stdout or written to a file if you are not using OPNsense.
The script uses a YAML configuration file, see the comments in config.yml
for information on configuring the script.
If using the script to update an OPNsense alias it is recommended to create the OPNsense API key on a user with only the permission "Firewall: Alias: Edit". This minimizes the damage that can be done if the key is compromised.
See this related blog post for details on how I use this script to connect Home Assistant to Google Assistant:
https://coreybraun.com/posts/google-assistant-home-assistant/
I needed the same functionality, but instead of using OPNsense, I needed the addresses to be added as UFW rules. Use of the UFW module requires running this script as root.
The script will create UFW rules with the comment "Managed by googleips.py", this makes sure that the next run of the script looks at the previously created rules and removes any IP blocks that have been removed from Google's list.
I wrote a blog post about my setup utilizing this script here: https://sbjzn.com/blog/secure-home-assistant-google-assistant/
// sbjzn