{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AzureVNETPeeringAttachmentConfig", "title": "Azure VNET Peering Attachment Config", "type": "object", "properties": { "kind": { "enum": [ "azure-vnet-peering-attachment" ], "title": "Azure VNET Peering Attachment Type" }, "tenant_id": { "description": "Tenant ID for the Azure VNET Peering attachment.", "type": "string", "title": "Tenant ID" }, "subscription_id": { "description": "Subscription ID for the Azure VNET Peering attachment.", "type": "string", "title": "Subscription ID" }, "resource_group_name": { "description": "Resource Group Name for the Azure VNET Peering attachment.", "type": "string", "title": "Resource Group Name" }, "vnet_name": { "description": "VNET Name for the Azure VNET Peering attachment.", "type": "string", "title": "VNET Name" } }, "additionalProperties": false, "required": [ "kind", "tenant_id", "subscription_id", "resource_group_name", "vnet_name" ] }