Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions plugins/modules/codebuild_project.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,22 @@
encryption_key: "arn:aws:kms:us-east-1:123123:alias/aws/s3"
region: us-east-1
state: present

- community.aws.codebuild_project:
name: CodeBuild_project_build_with_timeout
description: "Simple build with no artifacts"
timeout_in_minutes: 30
service_role: "arn:aws:iam::123456789:role/codebuild-role"
source:
type: GITHUB
location: "https://github.com/myorg/myapp.git"
artifacts:
type: NO_ARTIFACTS
environment:
type: LINUX_CONTAINER
compute_type: BUILD_GENERAL1_SMALL
image: "aws/codebuild/standard:5.0"
state: present
"""

RETURN = r"""
Expand Down
Loading