Difference between revisions of "Terraform resource: aws appautoscaling target"
Jump to navigation
Jump to search
↑ https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/appautoscaling_target
Line 6: | Line 6: | ||
min_capacity = 1 | min_capacity = 1 | ||
[[resource_id]] = "service/${aws_ecs_cluster.example.name}/${aws_ecs_service.example.name}" | [[resource_id]] = "service/${aws_ecs_cluster.example.name}/${aws_ecs_service.example.name}" | ||
− | scalable_dimension = "ecs:service:DesiredCount" | + | [[scalable_dimension]] = "[[ecs:service:DesiredCount]]" |
service_namespace = "ecs" | service_namespace = "ecs" | ||
} | } |
Latest revision as of 08:46, 4 July 2023
aws_appautoscaling_target
resource [1]
Contents
ECS Example[edit]
resource "aws_appautoscaling_target" "ecs_target" { max_capacity = 4 min_capacity = 1 resource_id = "service/${aws_ecs_cluster.example.name}/${aws_ecs_service.example.name}" scalable_dimension = "ecs:service:DesiredCount" service_namespace = "ecs" }
DynamoDB index official example[edit]
resource "aws_appautoscaling_target" "dynamodb_index_read_target" { max_capacity = 100 min_capacity = 5 resource_id = "table/${aws_dynamodb_table.example.name}/index/${var.index_name}" scalable_dimension = "dynamodb:index:ReadCapacityUnits" service_namespace = "dynamodb" }
DynamoDB Table official example[edit]
resource "aws_appautoscaling_target" "dynamodb_table_read_target" { max_capacity = 100 min_capacity = 5 resource_id = "table/${aws_dynamodb_table.example.name}" scalable_dimension = "dynamodb:table:ReadCapacityUnits" service_namespace = "dynamodb" }
Related[edit]
See also[edit]
- Terraform AWS autoscaling:
aws_appautoscaling_policy, aws_appautoscaling_target, aws_autoscaling_group, asg_desired_capacity
- Terraform AWS resources: IAM, Net, EC2, ECS, ECR, S3, Route53, ACM, CloudWatch, CloudFront SES, RDS, DLM
Advertising: