Skip to content

Commit

Permalink
Improve example DAGs for Cloud Memorystore (#7855)
Browse files Browse the repository at this point in the history
  • Loading branch information
mik-laj authored Mar 26, 2020
1 parent f7d1a43 commit 8ba8a72
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,11 @@

# [START howto_operator_get_instance]
get_instance = CloudMemorystoreGetInstanceOperator(
task_id="get-instance", location="europe-north1", instance=INSTANCE_NAME, project_id=GCP_PROJECT_ID
task_id="get-instance",
location="europe-north1",
instance=INSTANCE_NAME,
project_id=GCP_PROJECT_ID,
do_xcom_push=True,
)
# [END howto_operator_get_instance]

Expand Down Expand Up @@ -212,6 +216,7 @@
create_instance_2 >> import_instance
create_instance >> list_instances >> list_instances_result
list_instances >> delete_instance
export_instance >> update_instance
update_instance >> delete_instance
get_instance >> set_acl_permission >> export_instance
export_instance >> import_instance
Expand Down

0 comments on commit 8ba8a72

Please sign in to comment.