Skip to content

Commit 44add6a

Browse files
misc cleanup
1 parent 66f2a61 commit 44add6a

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

internal/provider/data_source_hyok_encrypted_data_key.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ func (d *dataSourceHYOKEncryptedDataKey) Read(ctx context.Context, req datasourc
9696
// Set the computed attributes from the API response
9797
data.EncryptedDEK = types.StringValue(keyVersion.EncryptedDEK)
9898
data.CustomerKeyName = types.StringValue(keyVersion.CustomerKeyName)
99-
data.CreatedAt = types.StringValue(keyVersion.CreatedAt.Format(time.RFC3339)) // TODO DOM: Check this format
99+
data.CreatedAt = types.StringValue(keyVersion.CreatedAt.Format(time.RFC3339))
100100

101101
// Save data into Terraform state
102102
resp.Diagnostics.Append(resp.State.Set(ctx, &data)...)

website/docs/d/hyok_customer_key_version.markdown

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
layout: "tfe"
3-
page_title: "Terraform Enterprise: tfe_agent_pool"
3+
page_title: "Terraform Enterprise: tfe_hyok_customer_key_version"
44
description: |-
5-
Get information on an agent pool.
5+
Get information on a HYOK customer key version.
66
---
77

88
# Data Source: tfe_hyok_customer_key_version
@@ -13,7 +13,7 @@ Use this data source to get information about a Hold Your Own Keys (HYOK) custom
1313

1414
```hcl
1515
data "tfe_hyok_customer_key_version" "tfe_hyok_customer_key_version1" {
16-
id = "keyv-<your-id>"
16+
id = "keyv-123"
1717
}
1818
```
1919

website/docs/d/hyok_encrypted_data_key.markdown

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
layout: "tfe"
3-
page_title: "Terraform Enterprise: tfe_agent_pool"
3+
page_title: "Terraform Enterprise: tfe_hyok_encrypted_data_key"
44
description: |-
5-
Get information on an agent pool.
5+
Get information on a HYOK encrypted data key.
66
---
77

88
# Data Source: tfe_hyok_encrypted_data_key
@@ -13,7 +13,7 @@ Use this data source to get information about a Hold Your Own Keys (HYOK) encryp
1313

1414
```hcl
1515
data "tfe_hyok_encrypted_data_key" "tfe_hyok_encrypted_data_key1" {
16-
id = "dek-<your-id>"
16+
id = "dek-123"
1717
}
1818
```
1919

0 commit comments

Comments
 (0)