From 2ee61b03ff542976e5e2e90f7c3df2a693a82ac4 Mon Sep 17 00:00:00 2001 From: Maksym Vlasov Date: Tue, 6 Aug 2024 19:49:25 +0300 Subject: [PATCH] feat: Add tags to `aws_appautoscaling_target` (#133) * feat: Add tags to aws_appautoscaling_target Update `terraform-aws-dynamodb-autoscaler` module to set tags for `aws_appautoscaling_target` resources Related PR: https://github.com/cloudposse/terraform-aws-dynamodb-autoscaler/pull/65 * Update main.tf --- main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.tf b/main.tf index 0fc0030..4302dd5 100644 --- a/main.tf +++ b/main.tf @@ -152,7 +152,7 @@ resource "aws_dynamodb_table" "default" { module "dynamodb_autoscaler" { source = "cloudposse/dynamodb-autoscaler/aws" - version = "0.14.0" + version = "0.16.0" enabled = local.enabled && var.enable_autoscaler && var.billing_mode == "PROVISIONED" attributes = concat(module.this.attributes, var.autoscaler_attributes)