Skip to content

Commit

Permalink
offboard command
Browse files Browse the repository at this point in the history
  • Loading branch information
Nithishprem committed Feb 10, 2025
1 parent ddc62d3 commit 01b386b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/utils/accountConfig/accountConfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ export const GCP_SHELL_SCRIPT_OFFBOARD_COMMAND =
'bash -c "$(curl -fsSL <BASE_URL>/account-setup/gcp-offboard.sh?account_config_id=<ACCOUNT_CONFIG_ID>)"';

export const getGcpShellScriptOffboardCommand = (accountId) => {
return GCP_BOOTSTRAP_SHELL_COMMAND.replace("<BASE_URL>", baseURL).replace(
"<ACCOUNT_CONFIG_ID>",
accountId
);
return GCP_SHELL_SCRIPT_OFFBOARD_COMMAND.replace(
"<BASE_URL>",
baseURL
).replace("<ACCOUNT_CONFIG_ID>", accountId);
};

0 comments on commit 01b386b

Please sign in to comment.