RESOURCE CATALOG
Fabric
Private isolated network between Project resources.
type: "fabric"analogous to a VPC with subnetsDefinition
Defines the private IP range (CIDR) used by Project resources and indicates whether a public subnet exists to expose Gateways. Each Fabric is isolated from others by default — including other Fabrics in the same Organization.
When to use
- Projects with multiple Compute instances communicating internally.
- When some resources must be public and others private.
- To establish IP ranges aligned with partners (future peering).
When not to use
- Trivial projects with a single web Compute — a default Fabric is created automatically.
Configuration fields
Each field is validated at creation time. Defaults apply when fields are omitted.
config · fabric
| Campo | Tipo | Default · Opções |
|---|---|---|
cidr Faixa de IPs | string | Default 10.0.0.0/16 |
publica Tem subnet pública | bool | Default true |
Examples
Full payloads for POST to /api/projetos/{id}/recursos:
Private network with public subnet
json
{
"tipo": "fabric",
"nome": "rede-prod",
"config": {
"cidr": "10.42.0.0/16",
"publica": true
}
}