airflow.providers.google.cloud.hooks.compute_ssh

Module Contents

Classes

ComputeEngineSSHHook

Hook to connect to a remote instance in compute engine

class airflow.providers.google.cloud.hooks.compute_ssh.ComputeEngineSSHHook(gcp_conn_id='google_cloud_default', instance_name=None, zone=None, user='root', project_id=None, hostname=None, use_internal_ip=False, use_iap_tunnel=False, use_oslogin=True, expire_time=300, delegate_to=None)[source]

Bases: airflow.providers.ssh.hooks.ssh.SSHHook

Hook to connect to a remote instance in compute engine

Parameters
  • instance_name (Optional[str]) -- The name of the Compute Engine instance

  • zone (Optional[str]) -- The zone of the Compute Engine instance

  • user (Optional[str]) -- The name of the user on which the login attempt will be made

  • project_id (Optional[str]) -- The project ID of the remote instance

  • gcp_conn_id (str) -- The connection id to use when fetching connection info

  • hostname (Optional[str]) -- The hostname of the target instance. If it is not passed, it will be detected automatically.

  • use_iap_tunnel (bool) -- Whether to connect through IAP tunnel

  • use_internal_ip (bool) -- Whether to connect using internal IP

  • use_oslogin (bool) -- Whether to manage keys using OsLogin API. If false, keys are managed using instance metadata

  • expire_time (int) -- The maximum amount of time in seconds before the private key expires

  • gcp_conn_id -- The connection id to use when fetching connection information

  • delegate_to (Optional[str]) -- The account to impersonate, if any. For this to work, the service account making the request must have domain-wide delegation enabled.

conn_name_attr = gcp_conn_id[source]
default_conn_name = google_cloud_ssh_default[source]
conn_type = gcpssh[source]
hook_name = Google Cloud SSH[source]
static get_ui_field_behaviour()[source]

Returns custom field behaviour

get_conn(self)[source]

Return SSH connection.

Was this entry helpful?