About 14,300,000 results
Open links in new tab
  1. Pass multiple inputs into Map State in AWS Step Function

    Dec 3, 2019 · I am trying to use AWS Step Functions to trigger operations many S3 files via Lambda. To do this I am invoking a step function with an input that has a base S3 key of the file and part numbers …

  2. I am trying to map an Amazon EC2 drive to a local machine

    Sep 10, 2015 · 1 I am trying to map an Amazon EC2 instance to my local machine. I have read that it is possible via VPN but I need it to work without a VPN. Essentially I would like to make drives in the …

  3. AWS step-function mapState iterate over large payloads

    Your Map State will receive this new data structure and each iteration will be one of the tuples. Iteration #1: [ 0, 999 ], Iteration #2: [ 1000, 1999 ], etc Inside your iterator, call a lambda which uses the tuple …

  4. Combining AWS step function task and map outputs in to one array

    Jul 31, 2020 · Is this possible using the input/output processing available in aws step functions? I want to have them contained in one array so they can be processed together in an additional map state later …

  5. How to inject mapRoles into an EKS aws-auth ConfigMap via Terraform?

    Jan 26, 2022 · I want to automate inserting the ARNs of specific roles into an EKS aws-auth ConfigMap, right after deploying the cluster. However, it seems that Terraform is recommending using kubectl …

  6. How can I get the index of an iterator/map state in AWS step function

    Jan 8, 2023 · Is that possible in AWS step functions? I know I can create another lambda that acts as a counter, I just don't really want to add another one as it looks way over complicated for such a …

  7. Is there a way to visualize AWS current running infrastructure?

    Jun 28, 2018 · One challenge with most cloudformation visualizations is that they map every single resource instead of the logical entity. For example, a VPC is typically 20ish resources, but logically …

  8. Working around AWS Step Function Map concurrency limit

    Dec 17, 2020 · I have a Map task in an AWS Step Function which executes 100-200 lambdas in parallel, each running for a few minutes, then collects the results. However, I'm running into throttling where …

  9. AWS ECS Service Connect versus Service Discovery

    Apr 13, 2023 · ECS can interact with Cloud Map to automatically register services. All this is referred to in AWS ECS as Service Discovery. AWS ECS also has a relatively new thing called Service …

  10. Parsing String to JSON in AWS Step Function's Map State

    Dec 7, 2023 · I'm facing an issue with parsing a "stringified JSON" in an AWS Step Function's Map state. My state machine first invokes a Lambda function that returns a JSON object.