Skip to content

Commit

Permalink
feat: add larger instance types for MSK cluster
Browse files Browse the repository at this point in the history
This commit adds support for larger instance types (kafka.m5.8xlarge, kafka.m5.12xlarge, kafka.m5.16xlarge, kafka.m5.24xlarge) to the MSK cluster module. Now users can choose from a wider range of instance sizes when creating an MSK cluster.
  • Loading branch information
shblue21 committed Nov 1, 2023
1 parent 9c85fec commit e406874
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions plugins/modules/msk_cluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@
- kafka.m5.xlarge
- kafka.m5.2xlarge
- kafka.m5.4xlarge
- kafka.m5.8xlarge
- kafka.m5.12xlarge
- kafka.m5.16xlarge
- kafka.m5.24xlarge
default: kafka.t3.small
type: str
ebs_volume_size:
Expand Down Expand Up @@ -662,6 +666,10 @@ def main():
"kafka.m5.xlarge",
"kafka.m5.2xlarge",
"kafka.m5.4xlarge",
"kafka.m5.8xlarge",
"kafka.m5.12xlarge",
"kafka.m5.16xlarge",
"kafka.m5.24xlarge",
],
default="kafka.t3.small",
),
Expand Down

0 comments on commit e406874

Please sign in to comment.