Skip to content

Latest commit

 

History

History
108 lines (83 loc) · 1.92 KB

nsxt_policy_lb_app_profile.md

File metadata and controls

108 lines (83 loc) · 1.92 KB

nsxt_policy_lb_app_profile

back

Index

Terraform

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

top

Example Usage

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

  # description - (optional) is a type of string
  description = null
  # display_name - (optional) is a type of string
  display_name = null
  # type - (optional) is a type of string
  type = 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
}

variable "type" {
  description = "(optional) - Application Profile Type"
  type        = string
  default     = null
}

top

Datasource

data "nsxt_policy_lb_app_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
  # type - (optional) is a type of string
  type = var.type
}

top

Outputs

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

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

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

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

output "this" {
  value = nsxt_policy_lb_app_profile.this
}

top