outputs.tf 410 B

12345678910111213141516171819
  1. output "service_role" {
  2. value = aws_iam_role.codebuild_role.arn
  3. }
  4. output "kms_key" {
  5. value = aws_kms_key.s3_codebuild_artifacts.arn
  6. }
  7. output "artifact_s3_bucket" {
  8. value = aws_s3_bucket.artifacts.id
  9. }
  10. # output codebuild_image_centos7 {
  11. # value = aws_ecr_repository.codebuild-centos7.repository_url
  12. # }
  13. #output codebuild_image_rhel7 {
  14. # value = aws_ecr_repository.codebuild-rhel7.repository_url
  15. #}