-
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.
rename get_gcloud_env_info -> check_terra_env; emit booleans for exec…
…ution on Terra, GCP
- Loading branch information
Showing
2 changed files
with
77 additions
and
62 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 |
---|---|---|
|
@@ -11,13 +11,18 @@ workflow dump_gcloud_env_info { | |
email: "[email protected]" | ||
} | ||
|
||
call terra.get_gcloud_env_info | ||
call terra.check_terra_env | ||
|
||
output { | ||
Array[String] gcloud_env_info_files = get_gcloud_env_info.env_info_files | ||
|
||
String workspace_name_out = get_gcloud_env_info.workspace_name_out | ||
String workspace_namespace_out = get_gcloud_env_info.workspace_namespace_out | ||
String google_project_id_out = get_gcloud_env_info.google_project_id_out | ||
Boolean is_running_on_terra = check_terra_env.is_running_on_terra | ||
Boolean is_backed_by_gcp = check_terra_env.is_backed_by_gcp | ||
|
||
String workspace_name = check_terra_env.workspace_name | ||
String workspace_namespace = check_terra_env.workspace_namespace | ||
|
||
String google_project_id = check_terra_env.google_project_id | ||
|
||
File env_info = check_terra_env.env_info | ||
File gcloud_config_info = check_terra_env.gcloud_config_info | ||
} | ||
} |