Setup
Infrastructure setup for AWS Batch
This guide walks through setting up the required infrastruce to use bisi with AWS Batch.
Prerequisites:
awscli installed (
pip install awscli
)AWS credentials configured (
aws configure
)
IAM Permission Requirements
AWS Managed Policies
AWSBatchFullAccess
AWSCloudFormationFullAccess
AmazonElasticContainerRegistryPublicFullAccess
Extra inline policy:
Cloudformation Stack
A minimal setup can be achieved with a cloudformation stack. The stack requires two parameters for what subnets and security groups to use for the AWS Batch compute environment. You can navigate the VPC AWS console to get values for these parameters. Replace the variables below with your parameters and run the code in your terminal to create the infrastructure.
Last updated