Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions website/docs/language/settings/backends/ks3.mdx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
page_title: 'Backend Type: ks3'
description: >-
Terraform can store the state remotely, making it easier to version and work
with in a team.
Terraform can store the state remotely, making it easier to version and work
with in a team.
---

# KS3
Expand All @@ -11,7 +11,7 @@ Stores the state as an object in a configurable prefix in a given bucket on [Kin

This backend supports [state locking](/terraform/language/state/locking). Storing your state in a KS3 bucket requires the following permissions:

- `CreateTag`, `DeleteTag`, and `DescribeTags` on the tag key `ksyun-terraform-lock`
- `CreateTag`, `DeleteTag`, and `ListTags` on the tag key `ksyun-terraform-lock`
- `Put`, `Get`, and `Delete` files for the specified bucket's prefix

## Example Configuration
Expand Down Expand Up @@ -91,7 +91,7 @@ terraform {
}
}

# 用ks3作为远程state存储
# store state file into ks3
backend "ks3" {
bucket = "tf-backend"
key = "terraform.tfstate"
Expand All @@ -101,7 +101,7 @@ terraform {
# access_key = ""
# secret_key = ""
role_krn = "krn:ksc:iam::user_id:role/tf-backend-role"
session_name = "bakcend-test-assume-role"
session_name = "backend-test-assume-role"
assume_role_duration_seconds = 3600
}
}
Expand Down