Skip to content

Commit

Permalink
chore: integrationtest
Browse files Browse the repository at this point in the history
  • Loading branch information
Dahlberg Victor committed May 23, 2024
1 parent bb72fc6 commit 8e3e453
Show file tree
Hide file tree
Showing 13 changed files with 944 additions and 173 deletions.
4 changes: 3 additions & 1 deletion packages/@aws-cdk/aws-msk-alpha/lib/cluster.ts
Original file line number Diff line number Diff line change
Expand Up @@ -678,16 +678,18 @@ export class Cluster extends ClusterBase {
);
}

let clientAuthentication: any = {};
let clientAuthentication: any;

if (props.clientAuthentication?.saslProps) {
clientAuthentication = clientAuthentication ?? {},
clientAuthentication.sasl = {
...(props.clientAuthentication?.saslProps?.iam ? { iam: { enabled: props.clientAuthentication.saslProps.iam } } : {}),
...(props.clientAuthentication?.saslProps?.scram ? { scram: { enabled: props.clientAuthentication.saslProps.scram } } : {}),
};
}

if (props.clientAuthentication?.tlsProps) {
clientAuthentication = clientAuthentication ?? {},
clientAuthentication.tls = {
certificateAuthorityArnList: props.clientAuthentication.tlsProps?.certificateAuthorities?.map((ca) => ca.certificateAuthorityArn),
};
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

This file was deleted.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

This file was deleted.

Large diffs are not rendered by default.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 8e3e453

Please sign in to comment.