refactor(msk): adopt new storage_info schema for MSK EBS configuration
This commit is contained in:
parent
c05364dfe0
commit
6b1e04f5da
@ -4,10 +4,15 @@ resource "aws_msk_cluster" "this" {
|
||||
number_of_broker_nodes = var.number_of_broker_nodes
|
||||
|
||||
broker_node_group_info {
|
||||
instance_type = var.instance_type
|
||||
client_subnets = var.subnet_ids
|
||||
ebs_volume_size = var.volume_size
|
||||
security_groups = []
|
||||
instance_type = var.instance_type
|
||||
client_subnets = var.subnet_ids
|
||||
security_groups = []
|
||||
|
||||
storage_info {
|
||||
ebs_storage_info {
|
||||
volume_size = var.volume_size
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
tags = merge(var.tags, {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user