aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/github.com/hashicorp/terraform/providers/provider.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/hashicorp/terraform/providers/provider.go')
-rw-r--r--vendor/github.com/hashicorp/terraform/providers/provider.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/vendor/github.com/hashicorp/terraform/providers/provider.go b/vendor/github.com/hashicorp/terraform/providers/provider.go
index 1aa08c2..7e0a74c 100644
--- a/vendor/github.com/hashicorp/terraform/providers/provider.go
+++ b/vendor/github.com/hashicorp/terraform/providers/provider.go
@@ -176,6 +176,10 @@ type ReadResourceRequest struct {
176 176
177 // PriorState contains the previously saved state value for this resource. 177 // PriorState contains the previously saved state value for this resource.
178 PriorState cty.Value 178 PriorState cty.Value
179
180 // Private is an opaque blob that will be stored in state along with the
181 // resource. It is intended only for interpretation by the provider itself.
182 Private []byte
179} 183}
180 184
181type ReadResourceResponse struct { 185type ReadResourceResponse struct {
@@ -184,6 +188,10 @@ type ReadResourceResponse struct {
184 188
185 // Diagnostics contains any warnings or errors from the method call. 189 // Diagnostics contains any warnings or errors from the method call.
186 Diagnostics tfdiags.Diagnostics 190 Diagnostics tfdiags.Diagnostics
191
192 // Private is an opaque blob that will be stored in state along with the
193 // resource. It is intended only for interpretation by the provider itself.
194 Private []byte
187} 195}
188 196
189type PlanResourceChangeRequest struct { 197type PlanResourceChangeRequest struct {