Skip to content

Latest commit

 

History

History
69 lines (48 loc) · 914 Bytes

nsxt_management_cluster.md

File metadata and controls

69 lines (48 loc) · 914 Bytes

nsxt_management_cluster

back

Index

Terraform

terraform {
  required_providers {
    nsxt = ">= 3.1.1"
  }
}

top

Example Usage

module "nsxt_management_cluster" {
  source = "./modules/nsxt/d/nsxt_management_cluster"

}

top

Variables

top

Datasource

data "nsxt_management_cluster" "this" {
}

top

Outputs

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
}

top