-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
data-plane-controller: bastion_address and bastion_private_key export…
… columns
- Loading branch information
Showing
3 changed files
with
20 additions
and
1 deletion.
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
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,10 @@ | ||
-- Add bastion-related info columns that should be exposed to customers | ||
|
||
begin; | ||
|
||
-- Address for connecting to the bastion | ||
ALTER TABLE public.data_planes ADD bastion_address TEXT; | ||
-- Private key to be used for connecting to bastion | ||
ALTER TABLE public.data_planes ADD bastion_private_key TEXT; | ||
|
||
commit; |