You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
module"codebuild_project" {
source="git@github.com:flexion/aws-codebuild-runner-project-tf-module.git?ref=1.0.0"name="my-codebuild-project"description="Builds on workflow events"build_timeout=10service_role_arn="arn:aws:iam::123456789012:role/codebuild-role"// Running modeenvironment_type="LINUX_CONTAINER"// Compute Type: EC2environment_compute_type="BUILD_GENERAL1_SMALL"// Image: EC2 AMI Imageenvironment_image="aws/codebuild/amazonlinux-x86_64-standard:5.0"// As the access level is repo; remote repo addresssource_location="https://github.com/my-org/my-repo"codeconnections_arn="arn:aws:codestar-connections:us-east-1:123456789012:connection/abc123"// github_org_name = "my-org" Only needed if the webhook access level is org level; will be ignored if source_location != "CODEBUILD_DEFAULT_WEBHOOK_SOURCE_LOCATION"
}