mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-13 01:00:50 -04:00
Updates documentation to add code-block tags, and populate the importability documentation page.
840 B
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
nameis the name of the Virtual NIC.
Attributes Reference
-
descriptionis a description of the Virtual NIC. -
mac_addressis the MAC Address of the Virtual NIC. -
tagsis a list of Tags associated with the Virtual NIC. -
transit_flagistrueif the Virtual NIC is of the typetransit. -
uriis the Unique Resource Locator of the Virtual NIC.