Skip to content

Commit

Permalink
fix: Allow "all" as ignoreChanges lifecycle value
Browse files Browse the repository at this point in the history
  • Loading branch information
x3cion authored and ansgarm committed Jun 15, 2022
1 parent c11b3c5 commit c3c3641
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cdktf/lib/terraform-resource.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export interface ITerraformResource {
export interface TerraformResourceLifecycle {
readonly createBeforeDestroy?: boolean;
readonly preventDestroy?: boolean;
readonly ignoreChanges?: string[];
readonly ignoreChanges?: string[] | "all";
}

export interface TerraformMetaArguments {
Expand Down

0 comments on commit c3c3641

Please sign in to comment.