github.com/cbroglie/terraform@v0.7.0-rc3.0.20170410193827-735dfc416d46/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  
    18  ```
    19  resource "triton_vlan" "dmz" {
    20    vlan_id     = 100
    21    name        = "dmz"
    22    description = "DMZ VLAN"
    23  }
    24  ```
    25  
    26  ## Argument Reference
    27  
    28  The following arguments are supported:
    29  
    30  * `vlan_id` - (int, Required, Change forces new resource)
    31      Number between 0-4095 indicating VLAN ID
    32  
    33  * `name` - (string, Required)
    34      Unique name to identify VLAN
    35  
    36  * `description` - (string, Optional)
    37      Description of the VLAN