// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: MIT-0 data "aws_caller_identity" "current" {} # Codebuild role data "template_file" "buildspec" { template = file("buildspec.yml") vars = { env = var.ENV } } resource "aws_iam_role" "codebuild_role" { assume_role_policy = <