-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathoutput.tf
68 lines (56 loc) · 2.04 KB
/
output.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
// Storage (backup, logs, reports, repo)
output "lts_logs_bucket" {
value = module.eks-jx.lts_logs_bucket
description = "The bucket where logs from builds will be stored"
}
output "lts_reports_bucket" {
value = module.eks-jx.lts_reports_bucket
description = "The bucket where test reports will be stored"
}
output "lts_repository_bucket" {
value = module.eks-jx.lts_repository_bucket
description = "The bucket that will serve as artifacts repository"
}
// IAM Roles
output "cert_manager_iam_role" {
value = module.eks-jx.cert_manager_iam_role
description = "The IAM Role that the Cert Manager pod will assume to authenticate"
}
output "tekton_bot_iam_role" {
value = module.eks-jx.tekton_bot_iam_role
description = "The IAM Role that the build pods will assume to authenticate"
}
output "external_dns_iam_role" {
value = module.eks-jx.external_dns_iam_role
description = "The IAM Role that the External DNS pod will assume to authenticate"
}
output "cm_cainjector_iam_role" {
value = module.eks-jx.cm_cainjector_iam_role
description = "The IAM Role that the CM CA Injector pod will assume to authenticate"
}
output "controllerbuild_iam_role" {
value = module.eks-jx.controllerbuild_iam_role
description = "The IAM Role that the ControllerBuild pod will assume to authenticate"
}
output "cluster_autoscaler_iam_role" {
value = module.eks-jx.cluster_autoscaler_iam_role
description = "The IAM Role that the Jenkins X UI pod will assume to authenticate"
}
// Cluster specific output
output "cluster_name" {
value = module.eks.cluster_name
description = "The name of the created cluster"
}
output "cluster_oidc_issuer_url" {
value = module.eks.cluster_oidc_issuer_url
description = "The Cluster OIDC Issuer URL"
}
// JX3 docs
output "follow_install_logs" {
description = "Follow Jenkins X install logs"
value = "jx admin log"
}
output "docs" {
description = "Follow Jenkins X 3.x alpha docs for more information"
value = "https://jenkins-x.io/docs/v3/"
}