Reputation: 135
I'm new to Cloud Composer and Airflow. I want to restrict access to airflow web UI with web server access control. Also I need to know the static public IP address of the Airflow Web UI.
Example Airflow UI link:
https://example-dot-region.composer.googleusercontent.com
I can't find it by pinging the airflow web UI link. How can I learn this?
Upvotes: 2
Views: 2510
Reputation: 3789
There is no static IP for the Airflow UI. Following its architecture the Web UI is hosted in App Engine Flex, so it means the app will be served by any IP that is part of the Google Front End.
In general you could make App Engine Flex have a static IP (using LB + NEG for example) but since it is inside a Service Project you cannot access or control that environment.
Upvotes: 2