-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
version 1.0 | ||
|
||
#DX_SKIP_WORKFLOW | ||
import "../tasks/tasks_terra.wdl" as terra | ||
|
||
workflow dump_gcloud_env_info { | ||
meta { | ||
description: "Write system and gcloud environment info to output files." | ||
author: "Broad Viral Genomics" | ||
email: "[email protected]" | ||
} | ||
|
||
call terra.get_gcloud_env_info | ||
|
||
output { | ||
Array[String] gcloud_env_info_files = get_gcloud_env_info.env_info_files | ||
File additional_command_stdout = get_gcloud_env_info.additional_command_stdout | ||
} | ||
} |