mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-01-03 07:00:28 -05:00
1.7 KiB
1.7 KiB
layout, page_title, sidebar_current, description
| layout | page_title | sidebar_current | description |
|---|---|---|---|
| remotestate | Remote State Backend: s3 | docs-state-remote-s3 | Terraform can store the state remotely, making it easier to version and work with in a team. |
s3
Stores the state as a given key in a given bucket on Amazon S3.
-> Note: Passing credentials directly via config options will make them included in cleartext inside the persisted state. Use of environment variables or config file is recommended.
Example Usage
terraform remote config \
-backend=s3 \
-backend-config="bucket=terraform-state-prod" \
-backend-config="key=network/terraform.tfstate" \
-backend-config="region=us-east-1"
Example Referencing
resource "terraform_remote_state" "foo" {
backend = "s3"
config {
bucket = "terraform-state-prod"
key = "network/terraform.tfstate"
region = "us-east-1"
}
}
Configuration variables
The following configuration options / environment variables are supported:
bucket- (Required) The name of the S3 bucketkey- (Required) The path where to place/look for state file inside the bucketregion/AWS_DEFAULT_REGION- (Optional) The region of the S3 bucketendpoint/AWS_S3_ENDPOINT- (Optional) A custom endpoint for the S3 APIencrypt- (Optional) Whether to enable server side encryption of the state fileacl- Canned ACL to be applied to the state file.access_key/AWS_ACCESS_KEY_ID- (Optional) AWS access keysecret_key/AWS_SECRET_ACCESS_KEY- (Optional) AWS secret key