Skip to content

Commit

Permalink
review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
attilatabori committed Oct 28, 2022
1 parent 5ab91eb commit a3efc9d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,9 @@ func resourceIBMContainerVpcWorkerPoolRead(d *schema.ResourceData, meta interfac
if workerPool.WorkerVolumeEncryption != nil {
d.Set("kms_instance_id", workerPool.WorkerVolumeEncryption.KmsInstanceID)
d.Set("crk", workerPool.WorkerVolumeEncryption.WorkerVolumeCRKID)
d.Set("kms_account_id", workerPool.WorkerVolumeEncryption.KMSAccountID)
if workerPool.WorkerVolumeEncryption.KMSAccountID != "" {
d.Set("kms_account_id", workerPool.WorkerVolumeEncryption.KMSAccountID)
}
}
controller, err := flex.GetBaseController(meta)
if err != nil {
Expand Down
2 changes: 1 addition & 1 deletion website/docs/d/container_worker_pool.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,4 @@ Review the attribute references that are exported.
- `zone` - (String) Zone name.
- `crk` - Root Key ID for boot volume encryption.
- `kms_instance_id` - Instance ID for boot volume encryption.
- `kms_account_id` - Account ID for boot volume encryption, if other accuont is providing the kms.
- `kms_account_id` - Account ID for boot volume encryption, if other account is providing the kms.
2 changes: 1 addition & 1 deletion website/docs/r/container_vpc_cluster.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ Review the argument references that you can specify for your resource.

- `crk` - Root Key ID for boot volume encryption.
- `kms_instance_id` - Instance ID for boot volume encryption.
- `kms_account_id` - Account ID for boot volume encryption, if other accuont is providing the kms.
- `kms_account_id` - Account ID for boot volume encryption, if other account is providing the kms.

**Note**

Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/container_vpc_worker_pool.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ Review the argument references that you can specify for your resource.

- `crk` - Root Key ID for boot volume encryption.
- `kms_instance_id` - Instance ID for boot volume encryption.
- `kms_account_id` - Account ID for boot volume encryption, if other accuont is providing the kms.
- `kms_account_id` - Account ID for boot volume encryption, if other account is providing the kms.

## Attribute reference
In addition to all argument reference list, you can access the following attribute reference after your resource is created.
Expand Down

0 comments on commit a3efc9d

Please sign in to comment.