Skip to content

Commit 9649387

Browse files
Added the project arn (#66)
* Added the project arn Added the project ARN so we can reference this somewhere else if needed. * Updated README.md Co-authored-by: actions-bot <[email protected]>
1 parent 84c2a78 commit 9649387

File tree

3 files changed

+7
-0
lines changed

3 files changed

+7
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,7 @@ Available targets:
195195
| badge\_url | The URL of the build badge when badge\_enabled is enabled |
196196
| cache\_bucket\_arn | Cache S3 bucket ARN |
197197
| cache\_bucket\_name | Cache S3 bucket name |
198+
| project\_arn | Project ARN |
198199
| project\_id | Project ID |
199200
| project\_name | Project name |
200201
| role\_arn | IAM Role ARN |

docs/terraform.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@
6868
| badge\_url | The URL of the build badge when badge\_enabled is enabled |
6969
| cache\_bucket\_arn | Cache S3 bucket ARN |
7070
| cache\_bucket\_name | Cache S3 bucket name |
71+
| project\_arn | Project ARN |
7172
| project\_id | Project ID |
7273
| project\_name | Project name |
7374
| role\_arn | IAM Role ARN |

outputs.tf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,8 @@ output "badge_url" {
3232
description = "The URL of the build badge when badge_enabled is enabled"
3333
value = join("", aws_codebuild_project.default.*.badge_url)
3434
}
35+
36+
output "project_arn" {
37+
description = "Project ARN"
38+
value = join("", aws_codebuild_project.default.*.arn)
39+
}

0 commit comments

Comments
 (0)