forked from plus3it/terraform-aws-codecommit-flow-ci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
39 lines (32 loc) · 1.05 KB
/
outputs.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
output "codebuild_project_arn" {
description = "ARN of the CodeBuild Project"
value = module.runner.codebuild_project_arn
}
output "codebuild_project_name" {
description = "Name of the CodeBuild Project"
value = module.runner.codebuild_project_name
}
output "codebuild_project_service_role" {
description = "ARN of the CodeBuild Project Service Role"
value = module.runner.codebuild_project_service_role
}
output "events_rule_codebuild_arn" {
description = "ARN of the CloudWatch Event Rule for CodeBuild"
value = module.trigger.events_rule_arn
}
output "lambda_function_arn" {
description = "ARN of the Lambda function"
value = module.handler.function_arn
}
output "lambda_function_name" {
description = "Name of the Lambda function"
value = module.handler.function_name
}
output "lambda_role_arn" {
description = "ARN of the Lambda IAM Role"
value = module.handler.role_arn
}
output "lambda_role_name" {
description = "Name of the Lambda IAM Role"
value = module.handler.function_arn
}