You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
k3s/tests/perf/server/outputs.tf

16 lines
273 B

output "public_ip" {
value = var.domain_name
}
output "install_k3s_version" {
value = local.install_k3s_version
}
output "k3s_cluster_secret" {
value = local.k3s_cluster_secret
}
output "k3s_server_ips" {
value = join(",", aws_instance.k3s-server.*.public_ip)
}