Skip to content

Commit

Permalink
Fixed issue where provisioner example changeToken doesn't work (pulum…
Browse files Browse the repository at this point in the history
…i#839)

Co-authored-by: Daniel West <[email protected]>
  • Loading branch information
JustASquid and Daniel West committed Nov 19, 2020
1 parent 6dd5c75 commit a2f045d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aws-ts-ec2-provisioners/provisioners/provisioner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export class Provisioner<T, U> extends pulumi.dynamic.Resource {
return { id: uuid.v4(), outs: inputs };
},
};
super(provider, name, { dep: props.dep, result: null }, opts);
super(provider, name, { dep: props.dep, changeToken: props.changeToken, result: null }, opts);
}
}

Expand Down

0 comments on commit a2f045d

Please sign in to comment.