Skip to content

Commit

Permalink
fix: bubble outputs up out of the submodules
Browse files Browse the repository at this point in the history
  • Loading branch information
mogul committed Mar 1, 2022
1 parent d8b5845 commit 8d69c82
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions terraform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,30 @@ terraform {
}
}

output "domain_name" {
value = module.provision.domain_name
}

output "certificate_authority_data" {
value = module.bind.certificate_authority_data
}

output "server" {
value = module.bind.server
}

output "token" {
value = module.bind.token
}

output "namespace" {
value = module.bind.namespace
}

output "kubeconfig" {
value = module.bind.kubeconfig
}

variable "subdomain" {
type = string
default = ""
Expand Down

0 comments on commit 8d69c82

Please sign in to comment.