mirror of https://github.com/k3s-io/k3s
15 lines
381 B
Terraform
15 lines
381 B
Terraform
|
output "Route53_info" {
|
||
|
value = aws_route53_record.aws_route53.*
|
||
|
description = "List of DNS records"
|
||
|
}
|
||
|
|
||
|
output "master_ips" {
|
||
|
value = join("," , aws_instance.master.*.public_ip,aws_instance.master2-ha.*.public_ip)
|
||
|
description = "The public IP of the AWS node"
|
||
|
}
|
||
|
|
||
|
output "kubeconfig" {
|
||
|
value = var.resource_name
|
||
|
description = "kubeconfig of the cluster created"
|
||
|
}
|