generated from finos/software-project-blueprint
-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add GCP Workload Identity Federation Auth Strategy (#870)
* Add GCP Workload Identity Federation Auth Strategy * Add test for GCP WIF * add changeset * modify structure of auth strategy * fix: gcp-wif auth select * refactor gcp wif from aws specific to general * fix merge changes * fix lint error * Refactor code - observable & action * fix error in conn editor state * fix error in editor state * add manual test * Remove changesets * Add desired changesets, fix test * fix broken test * fix manual test * fix manual test * fix manual test
- Loading branch information
1 parent
8885ce4
commit 8334cdc
Showing
14 changed files
with
242 additions
and
2 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
--- | ||
'@finos/legend-manual-tests': patch | ||
--- |
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,6 @@ | ||
--- | ||
'@finos/legend-graph': patch | ||
'@finos/legend-studio': patch | ||
--- | ||
|
||
Add GCP Workload Identity Federation Authentication Strategy |
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
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
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 |
---|---|---|
|
@@ -190,6 +190,24 @@ RelationalDatabaseConnection connection::relational::StaticWithUserNameNoBase | |
}; | ||
} | ||
|
||
RelationalDatabaseConnection connection::relational::BQWithGCPWorkloadIdentityFederation | ||
{ | ||
store: store::db; | ||
type: BigQuery; | ||
specification: BigQuery | ||
{ | ||
projectId: 'projectId'; | ||
defaultDataset: 'defaultDataset'; | ||
}; | ||
auth: GCPWorkloadIdentityFederation | ||
{ | ||
serviceAccountEmail: '[email protected]'; | ||
additionalGcpScopes: [ | ||
'someScope' | ||
]; | ||
}; | ||
} | ||
|
||
RelationalDatabaseConnection connection::relational::BigQueryWithoutProxy | ||
{ | ||
store: store::db; | ||
|
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
Oops, something went wrong.