{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/GCPVPCPeeringAttachmentConfig", "title": "GCP VPC Peering Attachment Config", "type": "object", "properties": { "kind": { "enum": [ "gcp-vpc-peering-attachment" ], "title": "GCP VPC Peering Attachment Type" }, "peer_project_id": { "description": "GCP Project ID of the peer account to create attachment to.", "type": "string", "title": "GCP Project ID" }, "peer_vpc_name": { "description": "GCP VPC Name of the peer account to create attachment to.", "type": "string", "title": "GCP VPC Name" } }, "additionalProperties": false, "required": [ "kind", "peer_project_id", "peer_vpc_name" ] }