Skip to content

Commit

Permalink
encryption_algorithmの対応
Browse files Browse the repository at this point in the history
  • Loading branch information
hekki committed Dec 16, 2024
1 parent 1cf130f commit 6276e8e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/terraform/docs/d/disk.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ data "sakuracloud_disk" "foobar" {
* `id` - ID
* `connector` - ディスク接続インターフェース。 次のいずれかとなる[`virtio`/`ide`]
* `description` - 説明
* `encryption_algorithm` - ディスク暗号化アルゴリズム。 次のいずれかとなる[`none`/`aes256_xts`]
* `icon_id` - アイコンID
* `name` - 名称
* `plan` - プラン。 次のいずれかとなる[`ssd`/`hdd`]
Expand Down
2 changes: 2 additions & 0 deletions src/terraform/docs/r/disk.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ resource "sakuracloud_disk" "foobar" {
size = 20
source_archive_id = data.sakuracloud_archive.ubuntu.id
#distant_from = ["111111111111"]
encryption_algorithm = "aes256_xts"
description = "description"
tags = ["tag1", "tag2"]
Expand All @@ -39,6 +40,7 @@ resource "sakuracloud_disk" "foobar" {
* `plan` - (Optional) ディスクプラン / 次のいずれかを指定[`ssd`/`hdd`]/ この値を変更するとリソースの再作成が行われる / デフォルト:`ssd`
* `size` - (Optional) サイズ(GiB単位) / この値を変更するとリソースの再作成が行われる / デフォルト:`20`
* `distant_from` - (Optional) 別のストレージに格納する対象となるディスクのIDのリスト / この値を変更するとリソースの再作成が行われる
* `encryption_algorithm` - (Optional) ディスク暗号化アルゴリズム / 次のいずれかを指定[`none`/`aes256_xts`]/ この値を変更するとリソースの再作成が行われる / デフォルト:`none`

!!! Note
1TB以上のサイズを指定する場合、`size`に1024の倍数を指定してください。
Expand Down

0 comments on commit 6276e8e

Please sign in to comment.