# Migrating to Terrakube

if you are using other terraform remote states backend like the following example

{% tabs %}
{% tab title="remote backend" %}

```
terraform {
  backend "remote" {
    hostname = "app.terraform.io"
    organization = "migrate-org"

    workspaces {
      name = "migrate-state"
    }
  }
}
```

{% endtab %}

{% tab title="cloud block" %}

```
terraform {
  cloud {
    hostname = "app.terraform.io"
    organization = "migrate-org"
    workspaces {
      name = "migrate-state"
    }
  }
}
```

{% endtab %}
{% endtabs %}

You could easily migrate your state to Terrakube changing the hostname to your Terrakube API endpointd.

{% tabs %}
{% tab title="remote backend" %}

```
terraform {
  backend "remote" {
    hostname = "8080-azbuilder-terrakube-q8aleg88vlc.ws-us92.gitpod.io"
    organization = "migrate-org"

    workspaces {
      name = "migrate-state"
    }
  }
}
```

{% endtab %}

{% tab title="cloud block" %}

```
terraform {
  cloud {
    hostname = "8080-azbuilder-terrakube-q8aleg88vlc.ws-us92.gitpod.io"
    organization = "migrate-org"
    workspaces {
      name = "migrate-state"
    }
  }
}
```

{% endtab %}
{% endtabs %}

And run the command

```
terraform login 8080-azbuilder-terrakube-q8aleg88vlc.ws-us92.gitpod.io
terraform init -migrate-state
```

Once the migration process is completed you should see the terraform state in your storage backend (azure, aws, gcp or minio) depending of your configuration


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.terrakube.io/2.18.0/user-guide/migrating-to-terrakube.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
