Skip to content

Latest commit

 

History

History
72 lines (46 loc) · 3.08 KB

post-migration-guide.mdx

File metadata and controls

72 lines (46 loc) · 3.08 KB
layout page_title description
vagrant-cloud
Usage and Behavior Post Migration to HCP
Learn about how Vagrant and Vagrant Cloud will behave after migrating to HashiCorp Cloud Platform (HCP).

Migrating to HCP Vagrant Registry

This document describes the behavior of Vagrant Cloud after an organization is migrated to HCP Vagrant Registry. For information on migrating to HCP Vagrant Registry please see the migration guide.

Vagrant Cloud Redirects

After an organization has been migrated to HCP Vagrant Registry any requests Vagrant Cloud receives for that organization, or any boxes within that organization, will be automatically redirected to the proper location on HCP Vagrant Registry.

API

API requests to Vagrant Cloud for organizations that have been migrated to HCP Vagrant Registry will be automatically proxied to HCP.

Authenticated Requests

Authenticated API requests for migrated organizations will be proxied to HCP Vagrant Registry. This will require an HCP access token to be available to Vagrant Cloud to complete the request. Vagrant Cloud supports a composite access token comprised of the Vagrant Cloud access token and the HCP access token allowing seamless interactions with organizations that still remain on Vagrant Cloud as well as organizations that have been migrated to HCP Vagrant Registry.

The format of the composite access token is:

<VAGRANT_CLOUD_TOKEN>;<HCP_TOKEN>

If all organizations have been migrated to HCP Vagrant Registry the Vagrant Cloud access token will not be needed. The format of the access token is:

;<HCP_TOKEN>

HCP Access Token

The following prerequisites are required for generating an HCP access token:

Using the CLIENT_ID and CLIENT_SECRET from the HCP service principal login to HCP using the hcp command:

hcp auth login --client-id=CLIENT_ID --client-secret=CLIENT_SECRET

Once authenticated the access token can be printed using the following command:

hcp auth print-access-token

Vagrant Cloud Composite Token

The Vagrant CLI supports using the VAGRANT_CLOUD_TOKEN environment variable to hold the access token used for authentication. This environment variable can be set with both access tokens to allow request for migrated organization and unmigrated organizations to both work as expected. As noted above, the format of the composite token will consist of: the Vagrant Cloud access token, a semi-colon, and the HCP access token. An example of setting the environment variable would be:

export VAGRANT_CLOUD_TOKEN="<VAGRANT_CLOUD_TOKEN>;<HCP_TOKEN>"

The hcp command can also be used to provide the HCP access token to reduce the need for copying and pasting the access token:

export VAGRANT_CLOUD_TOKEN="<VAGRANT_CLOUD_TOKEN>;$(hcp auth print-access-token)"

If all organizations have been migrated to HCP Vagrant Registry, only the HCP access token will be needed:

export VAGRANT_CLOUD_TOKEN=";$(hcp auth print-access-token)"