debian-mirror-gitlab/doc/user/infrastructure/iac/terraform_state.md

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

318 lines
13 KiB
Markdown
Raw Normal View History

2021-11-11 11:23:49 +05:30
---
stage: Configure
group: Configure
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments
---
2022-04-04 11:22:00 +05:30
# GitLab-managed Terraform state **(FREE)**
2021-11-11 11:23:49 +05:30
> [Introduced](https://gitlab.com/groups/gitlab-org/-/epics/2673) in GitLab 13.0.
2022-07-16 23:28:13 +05:30
Terraform uses state files to store details about your infrastructure configuration.
With Terraform remote [backends](https://www.terraform.io/language/settings/backends),
you can store the state file in a remote and shared store.
2021-11-11 11:23:49 +05:30
2022-07-16 23:28:13 +05:30
GitLab provides a [Terraform HTTP backend](https://www.terraform.io/language/settings/backends/http)
to securely store your state files with minimal configuration.
2021-11-11 11:23:49 +05:30
2022-07-16 23:28:13 +05:30
In GitLab, you can:
2021-11-11 11:23:49 +05:30
2022-07-16 23:28:13 +05:30
- Version your Terraform state files.
- Encrypt the state file both in transit and at rest.
- Lock and unlock states.
- Remotely execute `terraform plan` and `terraform apply` commands.
2022-04-04 11:22:00 +05:30
2022-08-13 15:12:31 +05:30
WARNING:
**Disaster recovery planning**
Terraform state files are encrypted with the lockbox Ruby gem when they are at rest on disk and in object storage.
[To decrypt a state file, GitLab must be available](https://gitlab.com/gitlab-org/gitlab/-/issues/335739).
If it is offline, and you use GitLab to deploy infrastructure that GitLab requires (like virtual machines,
Kubernetes clusters, or network components), you cannot access the state file easily or decrypt it.
Additionally, if GitLab serves up Terraform modules or other dependencies that are required to bootstrap GitLab,
these will be inaccessible. To work around this issue, make other arrangements to host or back up these dependencies,
or consider using a separate GitLab instance with no shared points of failure.
2022-07-23 23:45:48 +05:30
## Prerequisites
For self-managed GitLab, before you can use GitLab for your Terraform state files:
- An administrator must [set up Terraform state storage](../../../administration/terraform_state.md).
- You must enable the **Infrastructure** menu for your project. Go to **Settings > General**,
expand **Visibility, project features, permissions**, and under **Operations**, turn on the toggle.
2022-04-04 11:22:00 +05:30
2022-07-16 23:28:13 +05:30
## Initialize a Terraform state as a backend by using GitLab CI/CD
2021-11-11 11:23:49 +05:30
2022-07-16 23:28:13 +05:30
After you execute the `terraform init` command, you can use GitLab CI/CD
to run `terraform` commands.
2021-11-11 11:23:49 +05:30
2022-07-16 23:28:13 +05:30
Prerequisites:
2021-11-11 11:23:49 +05:30
2022-07-16 23:28:13 +05:30
- To lock, unlock, and write to the state by using `terraform apply`, you must have at least the Maintainer role.
- To read the state by using `terraform plan -lock=false`, you must have at least the Developer role.
2021-11-11 11:23:49 +05:30
2022-07-16 23:28:13 +05:30
WARNING:
Like any other job artifact, Terraform plan data is viewable by anyone with the Guest role on the repository.
Neither Terraform nor GitLab encrypts the plan file by default. If your Terraform plan
includes sensitive data, like passwords, access tokens, or certificates, you should
encrypt plan output or modify the project visibility settings.
2021-11-11 11:23:49 +05:30
2022-07-16 23:28:13 +05:30
To configure GitLab CI/CD as a backend:
2021-11-11 11:23:49 +05:30
2022-07-16 23:28:13 +05:30
1. In your Terraform project, in a `.tf` file like `backend.tf`,
define the [HTTP backend](https://www.terraform.io/docs/language/settings/backends/http.html):
2021-11-11 11:23:49 +05:30
```hcl
terraform {
backend "http" {
}
}
```
2022-07-16 23:28:13 +05:30
1. In the root directory of your project repository, create a `.gitlab-ci.yml` file. Use
[this file](https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/Terraform.gitlab-ci.yml)
to populate it.
2022-07-23 23:45:48 +05:30
2022-07-16 23:28:13 +05:30
1. Push your project to GitLab. This action triggers a pipeline, which
runs the `gitlab-terraform init`, `gitlab-terraform validate`, and
`gitlab-terraform plan` commands.
1. Trigger the manual `terraform apply` job from the previous pipeline to provision the defined infrastructure.
2021-11-11 11:23:49 +05:30
2022-07-16 23:28:13 +05:30
The output from the above `terraform` commands should be viewable in the job logs.
2021-11-11 11:23:49 +05:30
2022-07-16 23:28:13 +05:30
## Access the state from your local machine
2021-11-11 11:23:49 +05:30
2022-07-16 23:28:13 +05:30
You can access the GitLab-managed Terraform state from your local machine.
2021-11-11 11:23:49 +05:30
2022-07-16 23:28:13 +05:30
WARNING:
On clustered deployments of GitLab, you should not use local storage.
A split state can occur across nodes, making subsequent Terraform executions
inconsistent. Instead, use a remote storage resource.
2021-11-11 11:23:49 +05:30
2022-07-16 23:28:13 +05:30
1. Ensure the Terraform state has been
[initialized for CI/CD](#initialize-a-terraform-state-as-a-backend-by-using-gitlab-cicd).
1. Copy a pre-populated Terraform `init` command:
2021-11-11 11:23:49 +05:30
2022-07-16 23:28:13 +05:30
1. On the top bar, select **Menu > Projects** and find your project.
1. On the left sidebar, select **Infrastructure > Terraform**.
1. Next to the environment you want to use, select **Actions**
(**{ellipsis_v}**) and select **Copy Terraform init command**.
2021-11-11 11:23:49 +05:30
2022-07-16 23:28:13 +05:30
1. Open a terminal and run this command on your local machine.
2021-11-11 11:23:49 +05:30
2022-07-16 23:28:13 +05:30
## Migrate to a GitLab-managed Terraform state
2021-11-11 11:23:49 +05:30
2022-07-16 23:28:13 +05:30
Terraform supports copying the state when the backend changes or is
reconfigured. Use these actions to migrate from another backend to
GitLab-managed Terraform state.
2021-11-11 11:23:49 +05:30
2022-07-16 23:28:13 +05:30
You should use a local terminal to run the commands needed for migrating to GitLab-managed Terraform state.
2021-11-11 11:23:49 +05:30
2022-07-16 23:28:13 +05:30
The following example demonstrates how to change the state name. The same workflow is needed to migrate to GitLab-managed Terraform state from a different state storage backend.
2021-11-11 11:23:49 +05:30
2022-07-16 23:28:13 +05:30
## Use your GitLab backend as a remote data source
2021-11-11 11:23:49 +05:30
2022-07-16 23:28:13 +05:30
You can use a GitLab-managed Terraform state backend as a
2022-05-07 20:08:51 +05:30
[Terraform data source](https://www.terraform.io/language/state/remote-state-data).
2021-11-11 11:23:49 +05:30
2022-07-23 23:45:48 +05:30
1. In your `main.tf` or other relevant file, declare these variables. Leave the values empty.
```hcl
variable "example_remote_state_address" {
type = string
description = "Gitlab remote state file address"
}
variable "example_username" {
type = string
description = "Gitlab username to query remote state"
}
variable "example_access_token" {
type = string
description = "GitLab access token to query remote state"
}
```
1. To override the values from the previous step, create a file named `example.auto.tfvars`. This file should **not** be versioned in your project repository.
2021-11-11 11:23:49 +05:30
```plaintext
2022-07-23 23:45:48 +05:30
example_remote_state_address = "https://gitlab.com/api/v4/projects/<TARGET-PROJECT-ID>/terraform/state/<TARGET-STATE-NAME>"
example_username = "<GitLab username>"
example_access_token = "<GitLab Personal Access Token>"
2021-11-11 11:23:49 +05:30
```
2022-07-16 23:28:13 +05:30
1. In a `.tf` file, define the data source by using [Terraform input variables](https://www.terraform.io/language/values/variables):
2021-11-11 11:23:49 +05:30
```hcl
data "terraform_remote_state" "example" {
backend = "http"
config = {
address = var.example_remote_state_address
username = var.example_username
password = var.example_access_token
}
}
```
2022-07-16 23:28:13 +05:30
- **address**: The URL of the remote state backend you want to use as a data source.
For example, `https://gitlab.com/api/v4/projects/<TARGET-PROJECT-ID>/terraform/state/<TARGET-STATE-NAME>`.
- **username**: The username to authenticate with the data source. If you are using
a [Personal Access Token](../../profile/personal_access_tokens.md) for
authentication, this value is your GitLab username. If you are using GitLab CI/CD, this value is `'gitlab-ci-token'`.
- **password**: The password to authenticate with the data source. If you are using a Personal Access Token for
2022-08-13 15:12:31 +05:30
authentication, this value is the token value (the token must have the **API** scope).
If you are using GitLab CI/CD, this value is the contents of the `${CI_JOB_TOKEN}` CI/CD variable.
2022-07-16 23:28:13 +05:30
2021-11-11 11:23:49 +05:30
Outputs from the data source can now be referenced in your Terraform resources
using `data.terraform_remote_state.example.outputs.<OUTPUT-NAME>`.
2022-07-16 23:28:13 +05:30
To read the Terraform state in the target project, you need at least the Developer role.
2021-11-11 11:23:49 +05:30
2022-07-16 23:28:13 +05:30
### Set up the initial backend
2021-11-11 11:23:49 +05:30
```shell
PROJECT_ID="<gitlab-project-id>"
TF_USERNAME="<gitlab-username>"
TF_PASSWORD="<gitlab-personal-access-token>"
TF_ADDRESS="https://gitlab.com/api/v4/projects/${PROJECT_ID}/terraform/state/old-state-name"
terraform init \
-backend-config=address=${TF_ADDRESS} \
-backend-config=lock_address=${TF_ADDRESS}/lock \
-backend-config=unlock_address=${TF_ADDRESS}/lock \
-backend-config=username=${TF_USERNAME} \
-backend-config=password=${TF_PASSWORD} \
-backend-config=lock_method=POST \
-backend-config=unlock_method=DELETE \
-backend-config=retry_wait_min=5
```
```plaintext
Initializing the backend...
Successfully configured the backend "http"! Terraform will automatically
use this backend unless the backend configuration changes.
Initializing provider plugins...
Terraform has been successfully initialized!
You may now begin working with Terraform. Try running "terraform plan" to see
any changes that are required for your infrastructure. All Terraform commands
should now work.
If you ever set or change modules or backend configuration for Terraform,
2022-01-26 12:08:38 +05:30
re-run this command to reinitialize your working directory. If you forget, other
2021-11-11 11:23:49 +05:30
commands will detect it and remind you to do so if necessary.
```
2022-07-16 23:28:13 +05:30
### Change the backend
2021-11-11 11:23:49 +05:30
Now that `terraform init` has created a `.terraform/` directory that knows where
the old state is, you can tell it about the new location:
```shell
TF_ADDRESS="https://gitlab.com/api/v4/projects/${PROJECT_ID}/terraform/state/new-state-name"
terraform init \
2022-04-04 11:22:00 +05:30
-migrate-state \
2021-11-11 11:23:49 +05:30
-backend-config=address=${TF_ADDRESS} \
-backend-config=lock_address=${TF_ADDRESS}/lock \
-backend-config=unlock_address=${TF_ADDRESS}/lock \
-backend-config=username=${TF_USERNAME} \
-backend-config=password=${TF_PASSWORD} \
-backend-config=lock_method=POST \
-backend-config=unlock_method=DELETE \
-backend-config=retry_wait_min=5
```
```plaintext
Initializing the backend...
Backend configuration changed!
Terraform has detected that the configuration specified for the backend
has changed. Terraform will now check for existing state in the backends.
Acquiring state lock. This may take a few moments...
Do you want to copy existing state to the new backend?
Pre-existing state was found while migrating the previous "http" backend to the
newly configured "http" backend. No existing state was found in the newly
configured "http" backend. Do you want to copy this state to the new "http"
backend? Enter "yes" to copy and "no" to start with an empty state.
Enter a value: yes
Successfully configured the backend "http"! Terraform will automatically
use this backend unless the backend configuration changes.
Initializing provider plugins...
Terraform has been successfully initialized!
You may now begin working with Terraform. Try running "terraform plan" to see
any changes that are required for your infrastructure. All Terraform commands
should now work.
If you ever set or change modules or backend configuration for Terraform,
rerun this command to reinitialize your working directory. If you forget, other
commands will detect it and remind you to do so if necessary.
```
If you type `yes`, it copies your state from the old location to the new
location. You can then go back to running it in GitLab CI/CD.
2022-07-16 23:28:13 +05:30
## Manage Terraform state files
2021-11-11 11:23:49 +05:30
> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/273592) in GitLab 13.8.
2022-07-16 23:28:13 +05:30
To view Terraform state files:
2021-11-11 11:23:49 +05:30
2022-07-16 23:28:13 +05:30
1. On the top bar, select **Menu > Projects** and find your project.
1. On the left sidebar, select **Infrastructure > Terraform**.
2021-11-11 11:23:49 +05:30
2022-07-16 23:28:13 +05:30
[An epic exists](https://gitlab.com/groups/gitlab-org/-/epics/4563) to track improvements to this UI.
2021-11-11 11:23:49 +05:30
2022-07-16 23:28:13 +05:30
### Manage individual Terraform state versions
2022-04-04 11:22:00 +05:30
> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/207347) in GitLab 13.4.
Individual state versions can be managed using the GitLab REST API.
2022-07-16 23:28:13 +05:30
If you have at least the Developer role, you can retrieve state versions by using their serial number::
2022-04-04 11:22:00 +05:30
```shell
curl --header "Private-Token: <your_access_token>" "https://gitlab.example.com/api/v4/projects/<your_project_id>/terraform/state/<your_state_name>/versions/<version-serial>"
```
2022-07-16 23:28:13 +05:30
If you have at least the Maintainer role, you can remove state versions by using their serial number:
2022-04-04 11:22:00 +05:30
```shell
curl --header "Private-Token: <your_access_token>" --request DELETE "https://gitlab.example.com/api/v4/projects/<your_project_id>/terraform/state/<your_state_name>/versions/<version-serial>"
```
2022-07-16 23:28:13 +05:30
### Remove a state file
2021-11-11 11:23:49 +05:30
2022-07-16 23:28:13 +05:30
If you have at least the Maintainer role, you can remove a state file.
2021-11-11 11:23:49 +05:30
2022-07-16 23:28:13 +05:30
1. On the left sidebar, select **Infrastructure > Terraform**.
1. In the **Actions** column, select **Actions** (**{ellipsis_v}**) and then **Remove state file and versions**.
2021-11-11 11:23:49 +05:30
2022-07-16 23:28:13 +05:30
### Remove a state file by using the API
2021-11-11 11:23:49 +05:30
2022-07-16 23:28:13 +05:30
You can remove a state file by making a request to the REST API. For example:
2021-11-11 11:23:49 +05:30
```shell
2022-07-16 23:28:13 +05:30
curl --header "Private-Token: <your_access_token>" --request DELETE "https://gitlab.example.com/api/v4/projects/<your_project_id>/terraform/state/<your_state_name>"
2021-11-11 11:23:49 +05:30
```
2022-07-16 23:28:13 +05:30
You can also use [the GraphQL API](../../../api/graphql/reference/index.md#mutationterraformstatedelete).
2021-11-11 11:23:49 +05:30
2022-06-21 17:19:12 +05:30
## Related topics
2021-11-11 11:23:49 +05:30
2022-06-21 17:19:12 +05:30
- [Troubleshooting GitLab-managed Terraform state](troubleshooting.md).
2022-07-16 23:28:13 +05:30
- To use GitLab and Terraform to deploy an AWS EC2 instance in a custom VPC,
see [this sample project](https://gitlab.com/gitlab-org/configure/examples/gitlab-terraform-aws).