Skip to content

Commit 7082bb8

Browse files
authored
Merge pull request #16 from aws-samples/outputs
added outputs
2 parents c33cf5f + 27fd0c0 commit 7082bb8

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

outputs.tf

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
output "pipeline" {
2+
value = aws_codepipeline.this
3+
}
4+
5+
output "pipeline_role" {
6+
value = aws_iam_role.codepipeline
7+
}
8+
9+
output "codebuild_role" {
10+
value = aws_iam_role.codebuild
11+
}
12+
13+
output "cloudwatch_log_group" {
14+
value = aws_cloudwatch_log_group.this
15+
}
16+
17+
output "bucket" {
18+
value = aws_s3_bucket.this
19+
}

0 commit comments

Comments
 (0)