github.com/nathanielks/terraform@v0.6.1-0.20170509030759-13e1a62319dc/website/source/docs/providers/opc/r/opc_compute_vnic_set.html.markdown (about)

     1  ---
     2  layout: "opc"
     3  page_title: "Oracle: opc_compute_vnic_set"
     4  sidebar_current: "docs-opc-resource-vnic-set"
     5  description: |-
     6    Creates and manages a virtual NIC set in an OPC identity domain
     7  ---
     8  
     9  # opc\_compute\_vnic\_set
    10  
    11  The ``opc_compute_vnic_set`` resource creates and manages a virtual NIC set in an OPC identity domain.
    12  
    13  ## Example Usage
    14  
    15  ```hcl
    16  resource "opc_compute_vnic_set" "test_set" {
    17    name         = "test_vnic_set"
    18    description  = "My vnic set"
    19    applied_acls = ["acl1", "acl2"]
    20    virtual_nics = ["nic1", "nic2", "nic3"]
    21    tags         = ["xyzzy", "quux"]
    22  }
    23  ```
    24  
    25  ## Argument Reference
    26  
    27  The following arguments are supported:
    28  
    29  * `name` - (Required) The unique (within this identity domain) name of the virtual nic set.
    30  
    31  * `description` - (Optional) A description of the virtual nic set.
    32  
    33  * `applied_acls` - (Optional) A list of the ACLs to apply to the virtual nics in the set.
    34  
    35  * `virtual_nics` - (Optional) List of virtual NICs associated with this virtual NIC set.
    36  
    37  * `tags` - (Optional) A list of tags to apply to the storage volume.
    38  
    39  ## Import
    40  
    41  VNIC Set's can be imported using the `resource name`, e.g.
    42  
    43  ```shell
    44  $ terraform import opc_compute_vnic_set.set1 example
    45  ```