From f0857f3341ce4bb869ea11e7ad2a6d5a98d0149d Mon Sep 17 00:00:00 2001 From: "Marius P." <22294277+mpdred@users.noreply.github.com> Date: Tue, 26 Nov 2024 17:06:00 +0200 Subject: [PATCH] feat: Add tags to AppAutoscaling target (#44) --- main.tf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main.tf b/main.tf index 749bb36..bf8a387 100644 --- a/main.tf +++ b/main.tf @@ -313,6 +313,8 @@ resource "aws_appautoscaling_target" "this" { resource_id = aws_msk_cluster.this[0].arn scalable_dimension = "kafka:broker-storage:VolumeSize" service_namespace = "kafka" + + tags = var.tags } resource "aws_appautoscaling_policy" "this" {