Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.coreweave.com/llms.txt

Use this file to discover all available pages before exploring further.

Query information about an existing VPC by ID. See the CoreWeave VPC API reference.

Example usage

data "coreweave_networking_vpc" "default" {
  id = "1063bce6-6e5b-4b0a-b73a-7e6106b2a77c"
}

Schema

Required

  • id (String) The ID of the VPC.

Read-Only

  • dhcp (Attributes) Settings affecting DHCP behavior within the VPC. (see below for nested schema)
  • egress (Attributes) Settings affecting traffic leaving the VPC. (see below for nested schema)
  • host_prefix (String, Deprecated) An IPv4 CIDR range used to allocate host addresses when booting compute into a VPC.
  • host_prefixes (Attributes Set) The IPv4 or IPv6 CIDR ranges used to allocate host addresses when booting compute into a VPC. (see below for nested schema)
  • ingress (Attributes) Settings affecting traffic entering the VPC. (see below for nested schema)
  • name (String) The name of the VPC.
  • vpc_prefixes (Attributes List) A list of additional named IPv4 prefixes for the VPC. (see below for nested schema)
  • zone (String) The Availability Zone in which the VPC is located.

Nested Schema for dhcp

Read-Only:

Nested Schema for dhcp.dns

Optional:
  • servers (Set of String) The DNS servers advertised to DHCP clients within the VPC.

Nested Schema for egress

Read-Only:
  • disable_public_access (Boolean) True if the VPC is blocked from consuming public Internet. False otherwise.

Nested Schema for host_prefixes

Read-Only:
  • ipam (Attributes) The configuration for a secondary host prefix. (see below for nested schema)
  • name (String) The user-specified name of the host prefix.
  • prefixes (List of String) The VPC-wide aggregates from which host-specific prefixes are allocated. May be IPv4 or IPv6.
  • type (String) Controls network connectivity from the prefix to the host.

Nested Schema for host_prefixes.ipam

Read-Only:
  • gateway_address_policy (String) Describes which IP address from the prefix is allocated to the network gateway.
  • prefix_length (Number) The desired length for each Node’s allocation from the VPC-wide aggregate prefix.

Nested Schema for ingress

Read-Only:
  • disable_public_services (Boolean) True if the VPC will prevent public prefixes advertised from Nodes from being imported into public-facing networks, making them inaccessible from the Internet. False otherwise.

Nested Schema for vpc_prefixes

Read-Only:
  • name (String)
  • value (String)
Last modified on March 24, 2026