forked from microsoft/AzureTRE
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #212 from Barts-Life-Science/ohdsi-tf-provider
Update ODHSI workspace service to get newer terraform provider
- Loading branch information
Showing
5 changed files
with
40 additions
and
24 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
28 changes: 14 additions & 14 deletions
28
templates/workspace_services/ohdsi/terraform/.terraform.lock.hcl
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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,13 @@ | ||
#!/bin/bash | ||
set -e | ||
|
||
# This script is used to install the bundle directly without having to interact with Porter | ||
|
||
# This script assumes you have created an .env from the sample and the variables | ||
# will come from there. | ||
# shellcheck disable=SC2154 | ||
terraform init -upgrade -reconfigure -input=false -backend=true \ | ||
-backend-config="resource_group_name=${TF_VAR_mgmt_resource_group_name}" \ | ||
-backend-config="storage_account_name=${TF_VAR_mgmt_storage_account_name}" \ | ||
-backend-config="container_name=${TF_VAR_terraform_state_container_name}" \ | ||
-backend-config="key=tre-workspace-service-ohdsi-${TF_VAR_tre_resource_id}" |