Skip to content

Latest commit

 

History

History
112 lines (87 loc) · 2.2 KB

aci_vlan_encapsulationfor_vxlan_traffic.md

File metadata and controls

112 lines (87 loc) · 2.2 KB

aci_vlan_encapsulationfor_vxlan_traffic

back

Index

Terraform

terraform {
  required_providers {
    aci = ">= 0.5.4"
  }
}

top

Example Usage

module "aci_vlan_encapsulationfor_vxlan_traffic" {
  source = "./modules/aci/d/aci_vlan_encapsulationfor_vxlan_traffic"

  # annotation - (optional) is a type of string
  annotation = null
  # attachable_access_entity_profile_dn - (required) is a type of string
  attachable_access_entity_profile_dn = null
  # description - (optional) is a type of string
  description = null
  # name_alias - (optional) is a type of string
  name_alias = null
}

top

Variables

variable "annotation" {
  description = "(optional)"
  type        = string
  default     = null
}

variable "attachable_access_entity_profile_dn" {
  description = "(required)"
  type        = string
}

variable "description" {
  description = "(optional)"
  type        = string
  default     = null
}

variable "name_alias" {
  description = "(optional)"
  type        = string
  default     = null
}

top

Datasource

data "aci_vlan_encapsulationfor_vxlan_traffic" "this" {
  # annotation - (optional) is a type of string
  annotation = var.annotation
  # attachable_access_entity_profile_dn - (required) is a type of string
  attachable_access_entity_profile_dn = var.attachable_access_entity_profile_dn
  # description - (optional) is a type of string
  description = var.description
  # name_alias - (optional) is a type of string
  name_alias = var.name_alias
}

top

Outputs

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

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

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

output "this" {
  value = aci_vlan_encapsulationfor_vxlan_traffic.this
}

top