1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- data "github_repository" "this" {
- name = var.name
- }
- resource "aws_codebuild_project" "this" {
- count = var.artifact_s3_bucket=="" ? 0 : 1
- name = var.name
- description = "Project for ${var.name}"
- service_role = var.service_role
- encryption_key = var.kms_key
- badge_enabled = var.badge_enabled
- source {
- type = "GITHUB_ENTERPRISE"
- location = data.github_repository.this.http_clone_url
- report_build_status = true
- }
- environment {
- compute_type = "BUILD_GENERAL1_SMALL"
- image = var.codebuild_image
- type = "LINUX_CONTAINER"
- }
- artifacts {
- type = "S3"
- location = var.artifact_s3_bucket
- name = "/"
- path = var.name
- namespace_type = "BUILD_ID"
- packaging = "NONE"
- }
- tags = merge(var.standard_tags, var.tags)
- }
- resource "aws_codebuild_webhook" "this" {
- project_name = var.name
- branch_filter = var.webhook_branch_filter
- depends_on = [ aws_codebuild_project.this ]
- }
- resource "github_repository_webhook" "this" {
- active = true
- events = ["push"]
- repository = data.github_repository.this.name
- configuration {
- url = aws_codebuild_webhook.this.payload_url
- secret = aws_codebuild_webhook.this.secret
- content_type = "json"
- insecure_ssl = false
- }
- }
|