1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- data "github_repository" "this" {
- name = var.name
- }
- resource "aws_codebuild_project" "this" {
- name = var.name
- description = "Project for ${var.name}"
- service_role = aws_iam_role.codebuild_service_role.arn
- encryption_key = aws_kms_key.s3_codebuild.arn
- badge_enabled = var.badge_enabled
- concurrent_build_limit = 1
- #project_visibility = "PRIVATE"
- build_timeout = 60
- source {
- type = "GITHUB_ENTERPRISE"
- location = data.github_repository.this.http_clone_url
- report_build_status = true
- git_submodules_config {
- fetch_submodules = true
- }
- }
- source_version = var.source_version
- environment {
- compute_type = "BUILD_GENERAL1_SMALL"
- image = "aws/codebuild/standard:5.0"
- type = "LINUX_CONTAINER"
- environment_variable {
- name = "ARTIFACTS_PATH"
- type = "PLAINTEXT"
- value = "s3://${aws_s3_bucket.bucket.id}/"
- }
- }
- artifacts {
- type = "S3"
- location = aws_s3_bucket.bucket.id
- name = "/"
- path = var.name
- namespace_type = "NONE"
- packaging = "NONE"
- }
- tags = merge(local.standard_tags, var.tags)
- # Govcloud incompatible with "project visibility"
- # See https://github.com/hashicorp/terraform-provider-aws/issues/22473#issuecomment-1081187035
- lifecycle { ignore_changes = [project_visibility] }
- }
- resource "aws_codebuild_webhook" "this" {
- project_name = var.name
- filter_group {
- filter {
- type = "EVENT"
- pattern = "PUSH"
- }
- filter {
- type = "HEAD_REF"
- pattern = var.webhook_filter_pattern
- }
- }
- 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
- }
- }
|