Skip to content

Commit

Permalink
Added output in main.tf
Browse files Browse the repository at this point in the history
  • Loading branch information
garutilorenzo committed Aug 9, 2022
1 parent d066e8a commit 73d4f90
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,16 @@ module "k3s_cluster" {
cluster_name = "k3s-cluster"
k3s_token = "<change_me>"
source = "./k3s_cluster/"
}

output "elb_dns_name" {
value = module.k3s_cluster.elb_dns_name
}

output "k3s_server_public_ips" {
value = module.k3s_cluster.k3s_server_public_ips
}

output "k3s_workers_public_ips" {
value = module.k3s_cluster.k3s_workers_public_ips
}

0 comments on commit 73d4f90

Please sign in to comment.