github.com/danp/terraform@v0.9.5-0.20170426144147-39d740081351/website/source/docs/providers/triton/r/triton_vlan.html.markdown (about) 1 --- 2 layout: "triton" 3 page_title: "Triton: triton_vlan" 4 sidebar_current: "docs-triton-resource-vlan" 5 description: |- 6 The `triton_vlan` resource represents an VLAN for a Triton account. 7 --- 8 9 # triton\_vlan 10 11 The `triton_vlan` resource represents an Triton VLAN. A VLAN provides a low level way to segregate and subdivide the network. Traffic on one VLAN cannot, _on its own_, reach another VLAN. 12 13 ## Example Usages 14 15 ### Create a VLAN 16 17 ```hcl 18 resource "triton_vlan" "dmz" { 19 vlan_id = 100 20 name = "dmz" 21 description = "DMZ VLAN" 22 } 23 ``` 24 25 ## Argument Reference 26 27 The following arguments are supported: 28 29 * `vlan_id` - (int, Required, Change forces new resource) 30 Number between 0-4095 indicating VLAN ID 31 32 * `name` - (string, Required) 33 Unique name to identify VLAN 34 35 * `description` - (string, Optional) 36 Description of the VLAN