-
Notifications
You must be signed in to change notification settings - Fork 360
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add google auth to papi provider conf
- Loading branch information
1 parent
d6fa136
commit 642fead
Showing
1 changed file
with
32 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,6 +18,38 @@ filesystems { | |
} | ||
} | ||
|
||
|
||
google { | ||
application-name = "cromwell" | ||
json-dir = "Error: BA-6546 The environment variable CROMWELL_BUILD_RESOURCES_DIRECTORY must be set/export pointing to a valid path such as '${YOUR_CROMWELL_DIR}/target/ci/resources'" | ||
json-dir = ${?CROMWELL_BUILD_RESOURCES_DIRECTORY} | ||
auths = [ | ||
{ | ||
name = "service_account" | ||
scheme = "service_account" | ||
json-file = ${google.json-dir}/cromwell-centaur-service-account.json | ||
} | ||
{ | ||
name = "requester_pays_service_account" | ||
scheme = "service_account" | ||
# This service account does have billing permission and can be used for requester pays | ||
json-file = ${google.json-dir}/cromwell-centaur-requester-pays-service-account.json | ||
} | ||
{ | ||
name = "google_compute_service_account" | ||
scheme = "service_account" | ||
# This service account has only: | ||
# 1. The role "Genomics Pipelines Runner" | ||
# 2. Has been added a "Service Account User" on [email protected] | ||
json-file = ${google.json-dir}/cromwell-centaur-google-compute-service-account.json | ||
} | ||
{ | ||
name = "user_service_account" | ||
scheme = "user_service_account" | ||
} | ||
] | ||
} | ||
|
||
slow-job-warning-time: 20 minutes | ||
|
||
checkpointing-interval: "10 seconds" |