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
(14 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
− | + | <code>aws_appautoscaling_target</code> resource <ref>https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/appautoscaling_target</ref> | |
− | |||
− | + | == ECS Example == | |
− | + | 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 = " | + | service_namespace = "ecs" |
− | }</ | + | } |
+ | |||
+ | == DynamoDB index official example == | ||
+ | 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 == | ||
+ | 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 == | ||
+ | * <code>[[aws_appautoscaling_policy]]</code> | ||
+ | * <code>[[aws_autoscaling_group]]</code> | ||
== See also == | == See also == | ||
+ | * {{tf autoscaling}} | ||
* {{terraform aws resources}} | * {{terraform aws resources}} | ||
[[Category:Terraform]] | [[Category:Terraform]] | ||
[[Category:AWS]] | [[Category:AWS]] |
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: