-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathoutputs.tf
54 lines (44 loc) · 1.74 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
output "codebuild_project_arn" {
description = "The Amazon Resource Name (ARN) of the CodeBuild project."
value = aws_codebuild_project.this.arn
}
output "codebuild_project_id" {
description = "The Id of the CodeBuild project."
value = aws_codebuild_project.this.id
}
output "codedeploy_app_arn" {
description = "The Amazon Resource Name (ARN) of the CodeDeploy application."
value = aws_codedeploy_app.this.arn
}
output "codedeploy_app_name" {
description = "The name of the CodeDeploy application."
value = aws_codedeploy_app.this.name
}
output "codedeploy_deployment_group_arn" {
description = "The Amazon Resource Name (ARN) of the CodeDeploy deployment group."
value = aws_codedeploy_deployment_group.this.arn
}
output "codedeploy_deployment_group_deployment_group_id" {
description = "The ID of the CodeDeploy deployment group."
value = aws_codedeploy_deployment_group.this.deployment_group_id
}
output "codedeploy_deployment_group_id" {
description = "Application name and deployment group name."
value = aws_codedeploy_deployment_group.this.id
}
output "codepipeline_arn" {
description = "The Amazon Resource Name (ARN) of the CodePipeline."
value = aws_codepipeline.this.arn
}
output "codepipeline_artifact_storage_arn" {
description = "The Amazon Resource Name (ARN) of the CodePipeline artifact store."
value = "${local.artifact_store_bucket_arn}/${local.pipeline_artifacts_folder}"
}
output "codepipeline_id" {
description = "The ID of the CodePipeline."
value = aws_codepipeline.this.id
}
output "codepipeline_role_name" {
description = "The name of the IAM role used for the CodePipeline."
value = try(aws_iam_role.codepipeline_role[0].name, "")
}