CodeBuild free how to

0

The free account permit using the build.general1.small, but, how can i select it?

asked 2 years ago275 views
1 Answer
0

This can be specified by expanding the Additional Configuration section underneath Environment when you create a build project in the console. For the Compute option, select 3 GB memory, 2 vCPUs, which is the build.general1.small type. https://docs.aws.amazon.com/codebuild/latest/userguide/build-env-ref-compute-types.html

This can also be specified using CloudFormation like:

Project:
  Type: AWS::CodeBuild::Project
  Properties:
    Environment:
      ComputeType: BUILD_GENERAL1_SMALL

https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html

Ed
answered 2 years ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions