@go-to-k/cdkd 0.46.0 → 0.46.1

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.
Binary file
package/dist/index.js CHANGED
@@ -8344,6 +8344,18 @@ var IAMRoleProvider = class {
8344
8344
  }
8345
8345
  return result;
8346
8346
  }
8347
+ /**
8348
+ * `Policies` (inline policy bodies) are intentionally omitted from
8349
+ * `readCurrentState`: surfacing the names without bodies would
8350
+ * guarantee a `PolicyDocument`-shaped drift on every role, and
8351
+ * fetching every body costs one extra `GetRolePolicy` per inline
8352
+ * policy. Tell the drift comparator to skip the whole subtree until a
8353
+ * dedicated PR adds proper inline-policy drift via per-name
8354
+ * `GetRolePolicy`.
8355
+ */
8356
+ getDriftUnknownPaths() {
8357
+ return ["Policies"];
8358
+ }
8347
8359
  /**
8348
8360
  * Adopt an existing IAM role into cdkd state.
8349
8361
  *