terraform {
required_providers {
nsxt = ">= 3.1.1"
}
}
module "nsxt_management_cluster" {
source = "./modules/nsxt/d/nsxt_management_cluster"
}
data "nsxt_management_cluster" "this" {
}
output "id" {
description = "returns a string"
value = data.nsxt_management_cluster.this.id
}
output "node_sha256_thumbprint" {
description = "returns a string"
value = data.nsxt_management_cluster.this.node_sha256_thumbprint
}
output "this" {
value = nsxt_management_cluster.this
}