From 04ffe1ce2675eb1b230fc52f7a67473ae08ac019 Mon Sep 17 00:00:00 2001 From: Vladimir Varankin Date: Wed, 7 Jun 2023 18:13:14 +0200 Subject: [PATCH] fix: Tag Application AutoScaling target (#389) Co-authored-by: Vladimir Varankin --- main.tf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main.tf b/main.tf index be8414f..af5e50f 100644 --- a/main.tf +++ b/main.tf @@ -275,6 +275,8 @@ resource "aws_appautoscaling_target" "this" { resource_id = "cluster:${aws_rds_cluster.this[0].cluster_identifier}" scalable_dimension = "rds:cluster:ReadReplicaCount" service_namespace = "rds" + + tags = var.tags } resource "aws_appautoscaling_policy" "this" {