Skip to content

Commit

Permalink
fmt tf files
Browse files Browse the repository at this point in the history
  • Loading branch information
liyihuang committed Jul 25, 2024
1 parent d7731ce commit a972e3a
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions output.tf
Original file line number Diff line number Diff line change
Expand Up @@ -41,55 +41,55 @@ output "ssh_private_key_file_path" {

output "router_password" {
description = "The login password for vyos."
value = var.router_password
value = var.router_password

}
output "private_network_ipv4_cidr" {
description = "the private network IPv4 cidr block for VMs, only /24 is supported for now"
value = var.private_network_ipv4_cidr
value = var.private_network_ipv4_cidr

}

output "private_network_ipv6_cidr" {
description = "the private network IPv6 cidr block for VMs, and only /112 is supported for now"
value = var.private_network_ipv6_cidr
value = var.private_network_ipv6_cidr
}


output "dns_base_domain" {
description = "base domain for the LAN network so the k8s nodes can get unique the FQDN name and resolved by the router"
value = var.dns_base_domain
value = var.dns_base_domain
}

output "k8s_cluster_name" {
description = "this will be used to create the FQDN name in the DNS record to follow the OCP guide(https://docs.openshift.com/container-platform/4.11/installing/installing_bare_metal/installing-bare-metal.html#installation-dns-user-infra-example_installing-bare-metal)"
value = var.k8s_cluster_name
value = var.k8s_cluster_name

}

output "k8s_master_count" {
description = "number of master nodes, and we only support numbers 1 or 3 for now"
value = var.k8s_master_count
value = var.k8s_master_count
}
output "k8s_worker_count" {
description = "number of worker nodes, and we only support numbers less than 9 for now"
value = var.k8s_worker_count
value = var.k8s_worker_count
}

output "libvirt_public_network_id" {
description = "libvirt public network id"
value = libvirt_network.public_network.id
value = libvirt_network.public_network.id

}
output "libvirt_private_network_id" {
description = "libvirt private network id"
value = libvirt_network.private_network.id
value = libvirt_network.private_network.id

}


output "libvirt_pool_main_id" {
description = "libvirt_pool_main_id"
value = libvirt_pool.main.id
value = libvirt_pool.main.id

}

0 comments on commit a972e3a

Please sign in to comment.