We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1d0e3d commit e61cbb5Copy full SHA for e61cbb5
main.tf
@@ -5,6 +5,8 @@ resource "aws_appautoscaling_target" "read_target" {
5
resource_id = "table/${var.dynamodb_table_name}"
6
scalable_dimension = "dynamodb:table:ReadCapacityUnits"
7
service_namespace = "dynamodb"
8
+
9
+ tags = module.this.tags
10
}
11
12
resource "aws_appautoscaling_target" "read_target_index" {
@@ -14,6 +16,8 @@ resource "aws_appautoscaling_target" "read_target_index" {
14
16
resource_id = "table/${var.dynamodb_table_name}/index/${each.key}"
15
17
scalable_dimension = "dynamodb:index:ReadCapacityUnits"
18
19
20
21
22
23
resource "aws_appautoscaling_policy" "read_policy" {
0 commit comments