Merge pull request #22256 from hashicorp/paultyng-patch-1
Update copy for Exists
This commit is contained in:
commit
c4e5bcaa4c
|
@ -95,9 +95,10 @@ type Resource struct {
|
||||||
//
|
//
|
||||||
// Exists is a function that is called to check if a resource still
|
// Exists is a function that is called to check if a resource still
|
||||||
// exists. If this returns false, then this will affect the diff
|
// exists. If this returns false, then this will affect the diff
|
||||||
// accordingly. If this function isn't set, it will not be called. It
|
// accordingly. If this function isn't set, it will not be called. You
|
||||||
// is highly recommended to set it. The *ResourceData passed to Exists
|
// can also signal existence in the Read method by calling d.SetId("")
|
||||||
// should _not_ be modified.
|
// if the Resource is no longer present and should be removed from state.
|
||||||
|
// The *ResourceData passed to Exists should _not_ be modified.
|
||||||
Create CreateFunc
|
Create CreateFunc
|
||||||
Read ReadFunc
|
Read ReadFunc
|
||||||
Update UpdateFunc
|
Update UpdateFunc
|
||||||
|
|
Loading…
Reference in New Issue