Skip to content

Commit 2433dca

Browse files
SBGoodsbflad
andauthored
Apply suggestions from code review
Co-authored-by: Brian Flad <[email protected]>
1 parent f1112d5 commit 2433dca

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

datasource/read.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ type ReadResponse struct {
5454
// warnings or errors generated.
5555
Diagnostics diag.Diagnostics
5656

57-
// Deferred indicates that Terraform should defer
58-
// reading this data source.
57+
// Deferred indicates that Terraform should defer reading this
58+
// data source until a followup apply operation.
5959
//
6060
// This field can only be set if
6161
// `(datasource.ReadRequest).ClientCapabilities.DeferralAllowed` is true.

resource/modify_plan.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,8 @@ type ModifyPlanResponse struct {
8282
// generated.
8383
Diagnostics diag.Diagnostics
8484

85-
// Deferred indicates that Terraform should defer
86-
// importing this resource.
85+
// Deferred indicates that Terraform should defer importing this
86+
// resource until a followup apply operation.
8787
//
8888
// This field can only be set if
8989
// `(resource.ModifyPlanRequest).ClientCapabilities.DeferralAllowed` is true.

resource/read.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ type ReadResponse struct {
6767
// warnings or errors generated.
6868
Diagnostics diag.Diagnostics
6969

70-
// Deferred indicates that Terraform should defer
71-
// importing this resource.
70+
// Deferred indicates that Terraform should defer refreshing this
71+
// resource until a followup plan operation.
7272
//
7373
// This field can only be set if
7474
// `(resource.ReadRequest).ClientCapabilities.DeferralAllowed` is true.

0 commit comments

Comments
 (0)