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
* (Feature) Build Timeout
* Adds the `build_timeout` variable - How long in minutes, from 5 to 480 (8 hours), for AWS CodeBuild to wait until timing out any related build that does not get marked as completed.
* Defaults to 60 as per terraform docs - https://www.terraform.io/docs/providers/aws/r/codebuild_project.html#build_timeout
* (Chore) Generate README
* Adds `build_timeout` documentation
# These attributes are optional, used as ENV variables when building Docker images and pushing them to ECR
59
60
# For more info:
@@ -122,6 +123,7 @@ Available targets:
122
123
| aws_region | (Optional) AWS Region, e.g. us-east-1. Used as CodeBuild ENV variable when building Docker images. For more info: http://docs.aws.amazon.com/codebuild/latest/userguide/sample-docker.html| string | `` | no |
123
124
| build_compute_type | Instance type of the build instance | string |`BUILD_GENERAL1_SMALL`| no |
124
125
| build_image | Docker image for build environment, e.g. 'aws/codebuild/docker:1.12.1' or 'aws/codebuild/eb-nodejs-6.10.0-amazonlinux-64:4.0.0'. For more info: http://docs.aws.amazon.com/codebuild/latest/userguide/build-env-ref.html| string |`aws/codebuild/docker:1.12.1`| no |
126
+
| build_timeout | How long in minutes, from 5 to 480 (8 hours), for AWS CodeBuild to wait until timing out any related build that does not get marked as completed. | string |`60`| no |
125
127
| buildspec | Optional buildspec declaration to use for building the project | string | `` | no |
126
128
| cache_bucket_suffix_enabled | The cache bucket generates a random 13 character string to generate a unique bucket name. If set to false it uses terraform-null-label's id value | string |`true`| no |
127
129
| cache_enabled | If cache_enabled is true, create an S3 bucket for storing codebuild cache inside | string |`true`| no |
@@ -229,7 +231,7 @@ In general, PRs are welcome. We follow the typical "fork-and-pull" Git workflow.
Copy file name to clipboardExpand all lines: docs/terraform.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,7 @@
9
9
| aws_region | (Optional) AWS Region, e.g. us-east-1. Used as CodeBuild ENV variable when building Docker images. For more info: http://docs.aws.amazon.com/codebuild/latest/userguide/sample-docker.html| string | `` | no |
10
10
| build_compute_type | Instance type of the build instance | string |`BUILD_GENERAL1_SMALL`| no |
11
11
| build_image | Docker image for build environment, e.g. 'aws/codebuild/docker:1.12.1' or 'aws/codebuild/eb-nodejs-6.10.0-amazonlinux-64:4.0.0'. For more info: http://docs.aws.amazon.com/codebuild/latest/userguide/build-env-ref.html| string |`aws/codebuild/docker:1.12.1`| no |
12
+
| build_timeout | How long in minutes, from 5 to 480 (8 hours), for AWS CodeBuild to wait until timing out any related build that does not get marked as completed. | string |`60`| no |
12
13
| buildspec | Optional buildspec declaration to use for building the project | string | `` | no |
13
14
| cache_bucket_suffix_enabled | The cache bucket generates a random 13 character string to generate a unique bucket name. If set to false it uses terraform-null-label's id value | string |`true`| no |
14
15
| cache_enabled | If cache_enabled is true, create an S3 bucket for storing codebuild cache inside | string |`true`| no |
description="How long in minutes, from 5 to 480 (8 hours), for AWS CodeBuild to wait until timing out any related build that does not get marked as completed."
0 commit comments