@thomas.solbjor her er "import" av tofu fra ditt repo med justeringer for å tilpasse patterns her. Også minimalisert til å kun opprette cluster, ingen managed services som postgres etc. Ta en titt. Co-authored-by: Danijel Simeunovic <danijel.simeunovic@fortedigital.com> Reviewed-on: #15 Reviewed-by: Danijel Simeunovic <danijel.simeunovic@fortedigital.com> Co-authored-by: Ghost <> Co-committed-by: Ghost <>
27 lines
625 B
HCL
27 lines
625 B
HCL
# ─── Cluster ─────────────────────────────────────────────────────────
|
|
|
|
output "cluster_name" {
|
|
value = module.cluster.cluster_name
|
|
}
|
|
|
|
output "resource_group_name" {
|
|
value = module.cluster.resource_group_name
|
|
}
|
|
|
|
output "kubernetes_version" {
|
|
value = module.cluster.kubernetes_version
|
|
}
|
|
|
|
output "location" {
|
|
value = module.cluster.location
|
|
}
|
|
|
|
output "oidc_issuer_url" {
|
|
value = module.cluster.oidc_issuer_url
|
|
}
|
|
|
|
output "kubeconfig" {
|
|
value = module.cluster.kubeconfig
|
|
sensitive = true
|
|
}
|