This data source provides details about a specific Private Ip resource in Oracle Cloud Infrastructure Core service.
Gets the specified private IP. You must specify the object's OCID. Alternatively, you can get the object by using ListPrivateIps with the private IP address (for example, 10.0.3.3) and subnet OCID.
data "oci_core_private_ip" "test_private_ip" {
#Required
private_ip_id = oci_core_private_ip.test_private_ip.id
}
The following arguments are supported:
private_ip_id
- (Required) The OCID of the private IP or IPv6.The following attributes are exported:
availability_domain
- The private IP's availability domain. This attribute will be null if this is a secondary private IP assigned to a VNIC that is in a regional subnet. Example: Uocm:PHX-AD-1
compartment_id
- The OCID of the compartment containing the private IP.defined_tags
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
display_name
- A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. freeform_tags
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
hostname_label
- The hostname for the private IP. Used for DNS. The value is the hostname portion of the private IP's fully qualified domain name (FQDN) (for example, bminstance1
in FQDN bminstance1.subnet123.vcn1.oraclevcn.com
). Must be unique across all VNICs in the subnet and comply with RFC 952 and RFC 1123.
For more information, see DNS in Your Virtual Cloud Network.
Example: bminstance1
id
- The private IP's Oracle ID (OCID).ip_address
- The private IP address of the privateIp
object. The address is within the CIDR of the VNIC's subnet.
However, if the PrivateIp
object is being used with a VLAN as part of the Oracle Cloud VMware Solution, the address is from the range specified by the cidrBlock
attribute for the VLAN. See Vlan.
Example: 10.0.3.3
is_primary
- Whether this private IP is the primary one on the VNIC. Primary private IPs are unassigned and deleted automatically when the VNIC is terminated. Example: true
is_reserved
- true if the IP is reserved and can exist detached from vnic subnet_id
- The OCID of the subnet the VNIC is in.
However, if the PrivateIp
object is being used with a VLAN as part of the Oracle Cloud VMware Solution, the subnetId
is null.
time_created
- The date and time the private IP was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
vlan_id
- Applicable only if the PrivateIp
object is being used with a VLAN as part of the Oracle Cloud VMware Solution. The vlanId
is the OCID of the VLAN. See Vlan. vnic_id
- The OCID of the VNIC the private IP is assigned to. The VNIC and private IP must be in the same subnet. However, if the PrivateIp
object is being used with a VLAN as part of the Oracle Cloud VMware Solution, the vnicId
is null.