tencent cloud

Tencent Infrastructure Automation for Terraform

Backend

Download
聚焦模式
字号
最后更新时间: 2024-12-02 16:01:33

Remote state storage mechanism

Storing state files locally only may cause the following issues:
A tfstate file is stored locally in the current working directory by default. If computer damage causes file loss, all the resources corresponding to the tfstate file will become unmanageable, leading to a resource leak.
A tfstate file cannot be shared among team members.
To facilitate the storage and sharing of state files, Terraform introduces the remote state storage mechanism called "backend", an abstract remote storage API. Similar to a provider, backend supports a variety of remote storage services as described in Available Backends. A Terraform backend has two modes:
Standard: Supports remote state storage and state locking.
Enhanced: Supports remote operations (such as plan and apply on a remote server) in addition to the standard features.


Notes

After the backend configuration is updated, you need to run terraform init to verify and configure the backend.
If no custom backend is configured, Terraform will use the local backend by default. For example, a tfstate file is stored in the local directory by default.
Backend configuration is subject to the following restraints:
One configuration file provides only one backend block.
Backend blocks cannot reference named values (such as input variables, local variables, or data source attributes).

Using the backend

The definition of a backend block is nested in a top-level Terraform block. This document uses the Tencent Cloud Object Storage (COS) service as an example for configuration. For more information on other storage modes, see Available Backends.
terraform {
backend "cos" {
region = "ap-nanjing"
bucket = "tfstate-cos-1308126961"
prefix = "terraform/state"
}
}
If you have the tfstate-cos-1308126961 bucket in COS, the Terraform state information will be written into the terraform/state/terraform.tfstate file as shown below:


帮助和支持

本页内容是否解决了您的问题?

填写满意度调查问卷,共创更好文档体验。

文档反馈