forked from cloudposse/terraform-aws-dynamodb-autoscaler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
29 lines (24 loc) · 954 Bytes
/
outputs.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
output "autoscaler_iam_role_id" {
value = join("", aws_iam_role.autoscaler.*.id)
description = "Autoscaler IAM Role ID"
}
output "autoscaler_iam_role_arn" {
value = join("", aws_iam_role.autoscaler.*.arn)
description = "Autoscaler IAM Role ARN"
}
output "appautoscaling_read_target_id" {
value = join("", aws_appautoscaling_target.read_target.*.id)
description = "Appautoscaling read target ID"
}
output "appautoscaling_read_target_index_id" {
value = join("", aws_appautoscaling_target.read_target_index.*.id)
description = "Appautoscaling read target index ID"
}
output "appautoscaling_write_target_id" {
value = join("", aws_appautoscaling_target.write_target.*.id)
description = "Appautoscaling write target ID"
}
output "appautoscaling_write_target_index_id" {
value = join("", aws_appautoscaling_target.write_target_index.*.id)
description = "Appautoscaling write target index ID"
}