ResourceInstancePhase is a special kind of reference used only internally during graph building to represent resource instances that are in a non-primary state. Graph nodes can declare themselves referenceable via an instance phase or can declare that they reference an instance phase in order to ac
| 18 | // This special reference type cannot be accessed directly by end-users, and |
| 19 | // should never be shown in the UI. |
| 20 | type ResourceInstancePhase struct { |
| 21 | referenceable |
| 22 | ResourceInstance ResourceInstance |
| 23 | Phase ResourceInstancePhaseType |
| 24 | } |
| 25 | |
| 26 | var _ Referenceable = ResourceInstancePhase{} |
| 27 |
nothing calls this directly
no outgoing calls
no test coverage detected