Manage Raff VPCs (Virtual Private Clouds) with Terraform — RFC 1918 / RFC 6598 ranges, /16–/28 prefixes, region-pinned. CIDR is immutable; rename and description update in place.
Updated May 10, 2026Manages a Raff VPC — a private network that VMs in the same project and region can attach to and reach each other on internal IPs. CIDR is immutable once created; rename and description update in place.
resource "raff_vpc" "prod" { name = "prod-services" cidr = "10.7.0.0/16" region = "us-east" description = "Shared private network for the production tier"}