generated from saic-oss/template-repo
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathoutputs.tf
76 lines (63 loc) · 2.44 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
output "master_ssh_public_key" {
description = "Public SSH key for master cluster nodes"
value = module.rke_rancher_master_cluster.ssh_public_key
}
output "master_ssh_private_key" {
description = "Private SSH key for master cluster nodes"
value = module.rke_rancher_master_cluster.ssh_private_key
sensitive = true
}
output "master_cluster_kubeconfig" {
description = "KUBECONFIG yaml file contents to connect to the cluster. DO NOT USE unless you have no other options. Users should use the KUBECONFIG that Rancher provides to them rather than this."
value = module.rke_rancher_master_cluster.cluster_kubeconfig
sensitive = true
}
output "rancher_endpoint" {
description = "Endpoint of Rancher Server"
value = module.rke_rancher_master_cluster.rancher_endpoint
}
output "rancher_admin_password" {
description = "Password for Rancher 'admin' user"
value = module.rke_rancher_master_cluster.rancher_admin_password
sensitive = true
}
output "worker_ssh_public_key" {
description = "Public SSH key for worker cluster nodes"
value = module.rancher-k8s-cluster.ssh_public_key
}
output "worker_ssh_private_key" {
description = "[SENSITIVE] Private SSH key for the worker cluster nodes"
value = module.rancher-k8s-cluster.ssh_private_key
sensitive = true
}
output "gitlab_root_password" {
description = "Password for the 'root' user in GitLab"
value = module.k8s-devsecops-sandbox.gitlab_root_password
sensitive = true
}
output "gitlab_endpoint" {
description = "Endpoint for GitLab"
value = module.k8s-devsecops-sandbox.gitlab_endpoint
}
output "gitlab_registry_endpoint" {
description = "Endpoint for GitLab Registry"
value = module.k8s-devsecops-sandbox.gitlab_registry_endpoint
}
output "gitlab_minio_endpoint" {
description = "Endpoint for GitLab's Minio"
value = module.k8s-devsecops-sandbox.gitlab_minio_endpoint
}
output "gitlab_root_user_personal_access_token" {
description = "Personal Access Token for the GitLab root user"
value = module.k8s-devsecops-sandbox.gitlab_root_user_personal_access_token
sensitive = true
}
output "jenkins_endpoint" {
description = "Endpoint for Jenkins"
value = module.k8s-devsecops-sandbox.jenkins_endpoint
}
output "jenkins_admin_password" {
description = "Password for the 'admin' user in Jenkins"
value = module.k8s-devsecops-sandbox.jenkins_admin_password
sensitive = true
}