Update a Workspace
Workspace updates will be released by e6data to provide new features, improvements, optimization, and bug fixes.
Workspace updates are necessary under the following circumstances:
When Terraform values have been modified and permissions are updated
Obtain the latest Terraform files from the
e6x-labs/terraform
repo from Github.Navigate to the directory containing the Terraform files. To execute successfully, it is essential to be in the correct directory for the Terraform commands.
Configure the
terraform.tfvars
&provider.tf
files, to match the same details filled out during the initial Workspace installation.Initialize Terraform:
terraform init
Generate a Terraform plan and save it to a file (e.g.,
e6.plan
):terraform plan -var-file="terraform.tfvars" --out="e6.plan"
The
-var-file
flag specifies the input variable file (terraform.tfvars
) that contains the necessary configuration values for the deployment.Review the generated plan.
Apply the changes using the generated plan file:
terraform apply "e6.plan"
This command applies the changes specified in the plan file (e6.plan) to deploy the e6data workspace in your environment.
Make a note of the values returned by the script.
Navigate to Workspaces in the e6data Console
Click the name of the Workspace being updated or click on the kebab menu and select the Update option from the dropdown.
Click Update Workspace
Enter the new values returned in step 8.
Click Update
Upon version release
You can update the workspace in two ways:
Click on the kebab menu (three dots) for the desired workspace, then proceed to confirm and complete the process.
To update the workspace, first click on the desired workspace, then click on the "Update" button. Confirm the update and proceed to complete the process.
Last updated