» opc_compute_vnic_set

The opc_compute_vnic_set resource creates and manages a virtual NIC set in an Oracle Cloud Infrastructure Compute Classic identity domain.

» Example Usage

resource "opc_compute_vnic_set" "test_set" {
  name         = "test_vnic_set"
  description  = "My vnic set"
  applied_acls = ["acl1", "acl2"]
  virtual_nics = ["nic1", "nic2", "nic3"]
  tags         = ["xyzzy", "quux"]
}

» Argument Reference

The following arguments are supported:

  • name - (Required) The unique (within this identity domain) name of the virtual nic set.

  • description - (Optional) A description of the virtual nic set.

  • applied_acls - (Optional) A list of the ACLs to apply to the virtual nics in the set.

  • virtual_nics - (Optional) List of virtual NICs associated with this virtual NIC set.

  • tags - (Optional) A list of tags to apply to the storage volume.

» Import

VNIC Set's can be imported using the resource name, e.g.

$ terraform import opc_compute_vnic_set.set1 example