Skip to content

Latest commit

 

History

History
98 lines (74 loc) · 1.71 KB

nsxt_policy_ipv6_ndra_profile.md

File metadata and controls

98 lines (74 loc) · 1.71 KB

nsxt_policy_ipv6_ndra_profile

back

Index

Terraform

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

top

Example Usage

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

  # description - (optional) is a type of string
  description = null
  # display_name - (optional) is a type of string
  display_name = null
}

top

Variables

variable "description" {
  description = "(optional) - Description for this resource"
  type        = string
  default     = null
}

variable "display_name" {
  description = "(optional) - Display name of this resource"
  type        = string
  default     = null
}

top

Datasource

data "nsxt_policy_ipv6_ndra_profile" "this" {
  # description - (optional) is a type of string
  description = var.description
  # display_name - (optional) is a type of string
  display_name = var.display_name
}

top

Outputs

output "description" {
  description = "returns a string"
  value       = data.nsxt_policy_ipv6_ndra_profile.this.description
}

output "display_name" {
  description = "returns a string"
  value       = data.nsxt_policy_ipv6_ndra_profile.this.display_name
}

output "id" {
  description = "returns a string"
  value       = data.nsxt_policy_ipv6_ndra_profile.this.id
}

output "path" {
  description = "returns a string"
  value       = data.nsxt_policy_ipv6_ndra_profile.this.path
}

output "this" {
  value = nsxt_policy_ipv6_ndra_profile.this
}

top