Files
opentf/website/source/docs/providers/opc/d/opc_compute_vnic.html.markdown
Jake Champlin 77b996df6a provider/opc: Update documentation
Updates documentation to add code-block tags, and populate the importability documentation page.
2017-04-25 15:23:35 -04:00

840 B

layout, page_title, sidebar_current, description
layout page_title sidebar_current description
opc Oracle: opc_compute_vnic docs-opc-datasource-vnic Gets information about the configuration of a Virtual NIC.

opc_compute_vnic

Use this data source to access the configuration of a Virtual NIC.

Example Usage

data "opc_compute_vnic" "current" {
  name = "my_vnic_name"
}

output "mac_address" {
  value = "${data.opc_compute_vnic.current.mac_address}"
}

Argument Reference

  • name is the name of the Virtual NIC.

Attributes Reference

  • description is a description of the Virtual NIC.

  • mac_address is the MAC Address of the Virtual NIC.

  • tags is a list of Tags associated with the Virtual NIC.

  • transit_flag is true if the Virtual NIC is of the type transit.

  • uri is the Unique Resource Locator of the Virtual NIC.