skip to Main Content

How to get programatically the list of sagemaker instance types ml.*? – Amazon Web Sevices

With the AWS CLI ec2 describe-instance-types I can get a list of all the EC2 instance types but Sagemaker Instance Types like ml.t3.medium, ml.t3.large, ml.m5.xlarge, etc are not there. aws ec2 describe-instance-types --filters "Name=instance-type,Values=ml.*" --query "InstanceTypes[].{Type: InstanceType, MaxENI: NetworkInfo.MaximumNetworkInterfaces, IPv4addr:…

VIEW QUESTION

Error: Unsupported argument terraform ecs with load balancer – Amazon Web Sevices

appreciate your support in solving this issue i have main.tf file like below resource "aws_ecs_service" "nodejs-service" { name = "nodejs-service" cluster = aws_ecs_cluster.project_cluster.id task_definition = aws_ecs_task_definition.nodejs.arn launch_type = "FARGATE" desired_count = 1 load_balancer { target_group_arns = module.alb.target_group_arns container_name = "${aws_ecs_task_definition.nodejs.family}"…

VIEW QUESTION
Back To Top
Search