cb

CodeBuild

Dev ToolsAWS
General

General information about the service.

Description

AWS CodeBuild is a fully managed continuous integration service that compiles code and runs tests.

Service Namespace

AWS::CodeBuild::Project

ARN Pattern

arn:aws:codebuild:{region}:{account}:project/{project-name}

References

Chat

Powered by AI

Talk to this service to learn more about it.

Suggested questions:

Naming

The conventions, rules, and restrictions for naming this service.

Naming Convention

cb-

Length

2-255

Valid Characters

Letters, numbers, hyphens, underscores

Scope

region

Code

Deploy your infrastructure as code using your preferred tooling.

Official DocumentationTerraform
terraform
1resource "aws_codebuild_project" "main" {
2 name = "cb-${var.environment}"
3 service_role = aws_iam_role.codebuild.arn
4 artifacts { type = "NO_ARTIFACTS" }
5 environment {
6 compute_type = "BUILD_GENERAL1_SMALL"
7 image = "aws/codebuild/standard:7.0"
8 type = "LINUX_CONTAINER"
9 }
10 source { type = "GITHUB"; location = var.repo_url }
11}
Utilities

Utilities to support app deployment or configuration.