Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CCE] Add possibility to encrypt data volumes #1117

Merged
merged 5 commits into from
Jun 11, 2021
Merged
Show file tree
Hide file tree
Changes from 3 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
5 changes: 3 additions & 2 deletions docs/resources/cce_node_v3.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ The following arguments are supported:

* `eip_ids` - (Optional) List of existing elastic IP IDs.

-> **Note:** If the `eip_ids` parameter is configured, you do not need to configure the `eip_count` and `bandwidth` parameters:
-> If the `eip_ids` parameter is configured, you do not need to configure the `eip_count` and `bandwidth` parameters:
`iptype`, `bandwidth_charge_mode`, `bandwidth_size` and `share_type`.

* `eip_count` - (Optional) Number of elastic IPs to be dynamically created.
Expand All @@ -76,7 +76,7 @@ The following arguments are supported:

* `bandwidth_size` - (Optional) Bandwidth size.

-> **Note:** If the `bandwidth_size` parameter is configured, you do not need to configure the
-> If the `bandwidth_size` parameter is configured, you do not need to configure the
`eip_count`, `bandwidth_charge_mode`, `sharetype` and `iptype` parameters.

* `bandwidth_charge_mode` - (Optional) Bandwidth billing type.
Expand Down Expand Up @@ -113,6 +113,7 @@ The following arguments are supported:
* `size` - (Required) Disk size in GB.
* `volumetype` - (Required) Disk type.
* `extend_param` - (Optional) Disk expansion parameters.
* `kms_id` - (Optional) The Encryption KMS ID of the data volume.

## Attributes Reference

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ require (
github.com/jen20/awspolicyequivalence v1.1.0
github.com/jinzhu/copier v0.2.3
github.com/mitchellh/go-homedir v1.1.0
github.com/opentelekomcloud/gophertelekomcloud v0.4.1
github.com/opentelekomcloud/gophertelekomcloud v0.4.2-0.20210610105657-237b4413e40c
github.com/unknwon/com v1.0.1
gopkg.in/yaml.v2 v2.4.0
)
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -284,8 +284,8 @@ github.com/nsf/jsondiff v0.0.0-20200515183724-f29ed568f4ce h1:RPclfga2SEJmgMmz2k
github.com/nsf/jsondiff v0.0.0-20200515183724-f29ed568f4ce/go.mod h1:uFMI8w+ref4v2r9jz+c9i1IfIttS/OkmLfrk1jne5hs=
github.com/oklog/run v1.0.0 h1:Ru7dDtJNOyC66gQ5dQmaCa0qIsAUFY3sFpK1Xk8igrw=
github.com/oklog/run v1.0.0/go.mod h1:dlhp/R75TPv97u0XWUtDeV/lRKWPKSdTuV0TZvrmrQA=
github.com/opentelekomcloud/gophertelekomcloud v0.4.1 h1:Y22eR5WuxuyDErm/3Vw+90Oyx1SwuQ5kioO+t5tS4UE=
github.com/opentelekomcloud/gophertelekomcloud v0.4.1/go.mod h1:pzEP1kduNwv+hrI9R6/DFU/NiX7Kr9NiFjpQ7kJQTsM=
github.com/opentelekomcloud/gophertelekomcloud v0.4.2-0.20210610105657-237b4413e40c h1:YJkWZYQXdw3tsD0QfOZVC0oxwipHtLdL8TuZCww1oSY=
github.com/opentelekomcloud/gophertelekomcloud v0.4.2-0.20210610105657-237b4413e40c/go.mod h1:pzEP1kduNwv+hrI9R6/DFU/NiX7Kr9NiFjpQ7kJQTsM=
github.com/pierrec/lz4 v2.0.5+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi+IEE17M5jbnwPHcY=
github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=
Expand Down
Loading