@terraforge/terraform 0.0.22 → 0.0.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.mjs +6 -0
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -328,6 +328,12 @@ var TerraformProvider = class {
|
|
|
328
328
|
kind: "unchanged",
|
|
329
329
|
state: refreshedState
|
|
330
330
|
};
|
|
331
|
+
console.log("TYPE", type);
|
|
332
|
+
console.log("PRIOR_INPUT_STATE", priorInputState);
|
|
333
|
+
console.log("PRIOR_OUTPUT_STATE", priorOutputState);
|
|
334
|
+
console.log("PLANNED_STATE", plannedState);
|
|
335
|
+
console.log("REFRESH_STATE", refreshedState);
|
|
336
|
+
console.log("REQUIRES_REPLACE", requiresReplace);
|
|
331
337
|
return {
|
|
332
338
|
kind: "updated",
|
|
333
339
|
state: refreshedState
|