generated from jx3-gitops-repositories/jx3-terraform-eks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
output.tf
100 lines (81 loc) · 2.81 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
// Vault
output "vault_user_id" {
value = module.eks-jx.vault_user_id
description = "The Vault IAM user id"
}
output "vault_user_secret" {
value = module.eks-jx.vault_user_secret
description = "The Vault IAM user secret"
}
output "vault_unseal_bucket" {
value = module.eks-jx.vault_unseal_bucket
description = "The Vault storage bucket"
}
output "vault_dynamodb_table" {
value = module.eks-jx.vault_dynamodb_table
description = "The Vault DynamoDB table"
}
output "vault_kms_unseal" {
value = module.eks-jx.vault_kms_unseal
description = "The Vault KMS Key for encryption"
}
// Storage (backup, logs, reports, repo)
output "backup_bucket_url" {
value = module.eks-jx.backup_bucket_url
description = "The bucket where backups from velero will be stored"
}
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_reports_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-jx.cluster_name
description = "The name of the created cluster"
}
output "cluster_oidc_issuer_url" {
value = module.eks-jx.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/"
}