From 45db9aff4694707c11e53e29170244132fe3ef47 Mon Sep 17 00:00:00 2001 From: Kyle Galbraith Date: Wed, 30 May 2018 21:02:51 -0700 Subject: [PATCH] output role arns --- outputs.tf | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/outputs.tf b/outputs.tf index 708a21f..89b2707 100644 --- a/outputs.tf +++ b/outputs.tf @@ -9,3 +9,11 @@ output "clone_repo_ssh" { output "artifact_bucket" { value = "${aws_s3_bucket.build_artifact_bucket.id}" } + +output "codepipeline_role" { + value = "${aws_iam_role.codepipeline_role.arn}" +} + +output "codebuild_role" { + value = "${aws_iam_role.codebuild_assume_role.arn}" +}