Skip to content

Commit

Permalink
feat(msk): Kafka version 3.4.0 (#25557)
Browse files Browse the repository at this point in the history
Closes #25522

----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
daschaa committed May 16, 2023
1 parent d7e263d commit 6317518
Show file tree
Hide file tree
Showing 11 changed files with 4,820 additions and 0 deletions.
6 changes: 6 additions & 0 deletions packages/@aws-cdk/aws-msk-alpha/lib/cluster-version.ts
Expand Up @@ -95,6 +95,12 @@ export class KafkaVersion {
* Kafka version 3.3.2
*/
public static readonly V3_3_2 = KafkaVersion.of('3.3.2');

/**
* Kafka version 3.4.0
*/
public static readonly V3_4_0 = KafkaVersion.of('3.4.0');

/**
* Custom cluster version
* @param version custom version number
Expand Down
1 change: 1 addition & 0 deletions packages/@aws-cdk/aws-msk-alpha/test/cluster.test.ts
Expand Up @@ -41,6 +41,7 @@ describe('MSK Cluster', () => {
[msk.KafkaVersion.V3_2_0, '3.2.0'],
[msk.KafkaVersion.V3_3_1, '3.3.1'],
[msk.KafkaVersion.V3_3_2, '3.3.2'],
[msk.KafkaVersion.V3_4_0, '3.4.0'],
],
)('created with expected Kafka version %j', (parameter, result) => {
new msk.Cluster(stack, 'Cluster', {
Expand Down
@@ -0,0 +1,19 @@
{
"version": "31.0.0",
"files": {
"21fbb51d7b23f6a6c262b46a9caee79d744a3ac019fd45422d988b96d44b2a22": {
"source": {
"path": "KafkaVersionIntegTestDefaultTestDeployAssertD6628743.template.json",
"packaging": "file"
},
"destinations": {
"current_account-current_region": {
"bucketName": "cdk-hnb659fds-assets-${AWS::AccountId}-${AWS::Region}",
"objectKey": "21fbb51d7b23f6a6c262b46a9caee79d744a3ac019fd45422d988b96d44b2a22.json",
"assumeRoleArn": "arn:${AWS::Partition}:iam::${AWS::AccountId}:role/cdk-hnb659fds-file-publishing-role-${AWS::AccountId}-${AWS::Region}"
}
}
}
},
"dockerImages": {}
}
@@ -0,0 +1,36 @@
{
"Parameters": {
"BootstrapVersion": {
"Type": "AWS::SSM::Parameter::Value<String>",
"Default": "/cdk-bootstrap/hnb659fds/version",
"Description": "Version of the CDK Bootstrap resources in this environment, automatically retrieved from SSM Parameter Store. [cdk:skip]"
}
},
"Rules": {
"CheckBootstrapVersion": {
"Assertions": [
{
"Assert": {
"Fn::Not": [
{
"Fn::Contains": [
[
"1",
"2",
"3",
"4",
"5"
],
{
"Ref": "BootstrapVersion"
}
]
}
]
},
"AssertDescription": "CDK bootstrap stack version 6 required. Please run 'cdk bootstrap' with a recent version of the CDK CLI."
}
]
}
}
}
@@ -0,0 +1,19 @@
{
"version": "31.0.0",
"files": {
"60dae11a2659444f952ba2b102ea25cba4d75ba7229c89d74c55973e2c5c5b35": {
"source": {
"path": "KafkaVersionTestStack.template.json",
"packaging": "file"
},
"destinations": {
"current_account-current_region": {
"bucketName": "cdk-hnb659fds-assets-${AWS::AccountId}-${AWS::Region}",
"objectKey": "60dae11a2659444f952ba2b102ea25cba4d75ba7229c89d74c55973e2c5c5b35.json",
"assumeRoleArn": "arn:${AWS::Partition}:iam::${AWS::AccountId}:role/cdk-hnb659fds-file-publishing-role-${AWS::AccountId}-${AWS::Region}"
}
}
}
},
"dockerImages": {}
}

0 comments on commit 6317518

Please sign in to comment.