back
terraform {
required_providers {
nsxt = ">= 3.1.1"
}
}
top
module "nsxt_provider_info" {
source = "./modules/nsxt/d/nsxt_provider_info"
}
top
top
data "nsxt_provider_info" "this" {
}
top
output "commit" {
description = "returns a string"
value = data.nsxt_provider_info.this.commit
}
output "date" {
description = "returns a string"
value = data.nsxt_provider_info.this.date
}
output "id" {
description = "returns a string"
value = data.nsxt_provider_info.this.id
}
output "this" {
value = nsxt_provider_info.this
}
top