Skip to content

Latest commit

 

History

History
74 lines (52 loc) · 951 Bytes

nsxt_provider_info.md

File metadata and controls

74 lines (52 loc) · 951 Bytes

nsxt_provider_info

back

Index

Terraform

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

top

Example Usage

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

}

top

Variables

top

Datasource

data "nsxt_provider_info" "this" {
}

top

Outputs

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