cb
CodeBuild
Dev ToolsAWS
General
General information about the service.
Chat
Powered by AITalk 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 Documentation
terraform
1resource "aws_codebuild_project" "main" {2 name = "cb-${var.environment}"3 service_role = aws_iam_role.codebuild.arn4 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.