This page has moved to Adobe Experience League and will be redirected soon.
Adobe Commerce on cloud: change authentication keys and redeploy
Adobe Commerce on cloud: change authentication keys and redeploy
This article provides instructions on how to redeploy Adobe Commerce on cloud infrastructure with different authentication keys. For example, you might have used the keys for another account or you might have used Magento Open Source keys instead of Adobe Commerce keys.
If you used the incorrect keys, deployment fails. To recover, you must clone the project, add the correct keys to auth.json
, and push the change to the master branch.
In this article, we assume that your project has a master
branch only (master
is the default branch when you first create a project).
To redeploy with the correct authentication keys:
Log in to the machine that has your Adobe Commerce on cloud infrastructure SSH keys.
Log in to the project:
magento-cloud login
Create a branch to update code with the name auth
:
magento-cloud environment:branch auth master
Change to the project root directory.
Open auth.json
in a text editor.
{
"http-basic": {
"repo.magento.com": {
"username": "<your public key>",
"password": "<your private key>"
}
}
}
Add the correct authentication keys.
Save your changes and exit the text editor.
Commit and merge your changes.
git add -A
git commit -m "<description of change>"
git push origin master
Wait for the deployment to complete.
Messages indicate whether deployment was successful. You can confirm a successful deployment by going to one of the Environment routes displayed on your screen.
Was this article helpful?
Yes
No
0 out of 1 found this helpful