*`description` - (Optional) A short description of the project.
*`encryption_key` - (Optional) The AWS Key Management Service (AWS KMS) customer master key (CMK) to be used for encrypting the build project's build output artifacts.
*`service_role` - (Optional) The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role that enables AWS CodeBuild to interact with dependent AWS services on behalf of the AWS account.
*`timeout` - (Optional) 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. The default is 60 minutes.
*`tags` - (Optional) A mapping of tags to assign to the resource.
*`type` - (Required) The build output artifact's type. Valid values for this parameter are: `CODEPIPELINE`, `NO_ARTIFACTS` or `S3`.
*`location` - (Optional) Information about the build output artifact location. If `type` is set to `CODEPIPELINE` or `NO_ARTIFACTS` then this value will be ignored. If `type` is set to `S3`, this is the name of the output bucket. If `path` is not also specified, then `location` can also specify the path of the output artifact in the output bucket.
*`name` - (Optional) The name of the project. If `type` is set to `S3`, this is the name of the output artifact object
*`namespace_type` - (Optional) The namespace to use in storing build artifacts. If `type` is set to `S3`, then valid values for this parameter are: `BUILD_ID` or `NONE`.
*`packaging` - (Optional) The type of build output artifact to create. If `type` is set to `S3`, valid values for this parameter are: `NONE` or `ZIP`
*`path` - (Optional) If `type` is set to `S3`, this is the path to the output artifact
`environment` supports the following:
*`compute_type` - (Required) Information about the compute resources the build project will use. Available values for this parameter are: `BUILD_GENERAL1_SMALL`, `BUILD_GENERAL1_MEDIUM` or `BUILD_GENERAL1_LARGE`
*`image` - (Required) The ID of the Docker image to use for this build project
*`type` - (Required) The type of build environment to use for related builds. The only valid value is `LINUX_CONTAINER`.
*`environment_variable` - (Optional) A set of environment variables to make available to builds for this build project.
`environment_variable` supports the following:
*`name` - (Required) The environment variable's name or key.
*`value` - (Required) The environment variable's value.
`source` supports the following:
*`type` - (Required) The type of repository that contains the source code to be built. Valid values for this parameter are: `CODECOMMIT`, `CODEPIPELINE`, `GITHUB` or `S3`.
*`auth` - (Optional) Information about the authorization settings for AWS CodeBuild to access the source code to be built. Auth blocks are documented below.
*`buildspec` - (Optional) The build spec declaration to use for this build project's related builds.
*`location` - (Optional) The location of the source code from git or s3.
`auth` supports the following:
*`type` - (Required) The authorization type to use. The only valid value is `OAUTH`
*`description` - A short description of the project.
*`encryption_key` - The AWS Key Management Service (AWS KMS) customer master key (CMK) that was used for encrypting the build project's build output artifacts.
*`name` - The projects name.
*`service_role` - The ARN of the IAM service role.