Skip to content

Commit

Permalink
chore: fix line length
Browse files Browse the repository at this point in the history
  • Loading branch information
scanlonp committed Sep 11, 2024
1 parent ba2962e commit 7ae7bda
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,11 @@ export async function handler(props: UserHandlerProps & ClusterProps, event: AWS
await dropUser(username, clusterProps);
return;
} else if (event.RequestType === 'Update') {
const { replace } = await updateUser(username, passwordSecretArn, clusterProps, event.OldResourceProperties as unknown as UserHandlerProps & ClusterProps);
const { replace } = await updateUser(
username,
passwordSecretArn,
clusterProps,
event.OldResourceProperties as unknown as UserHandlerProps & ClusterProps);
const physicalId = replace ? makePhysicalId(username, clusterProps, event.RequestId) : event.PhysicalResourceId;
return { PhysicalResourceId: physicalId, Data: { username: username } };
} else {
Expand Down

0 comments on commit 7ae7bda

Please sign in to comment.