# Reserved IP Provides an e2e reserved ip resource. This resource allows you to manage reserved ip on your e2e clusters. When applied, a new reserved ip is created. When destroyed, this reserved ip is removed. ## Example Usage ```hcl resource "e2e_reserved_ip" "reserved_ip1" { project_id = location = (default: "Delhi") } ``` ## Schema ### Required - `project_id` (String) specify the project id in which the reserve ip is to be created - `location` (String) Location where node is to be launched (ex- "Delhi", "Chennai") ### Read-Only - `appliance_type` (String) type of appliance from whom it is attached - `bought_at` (String) time at which the reserve ip is bought - `id` (String) The ID of this resource. - `ip_address` (String) ip address of the reserve ip - `project_name` (String) project name in which the reserve ip is to be created - `reserve_id` (Number) reserve id - `reserved_type` (String) type of reserve_ip (example - PublicIP, AddonIP) - `status` (String) status of the reserve_ip (example - Attached, Available) - `vm_id` (String) ID of virtual machine from whom it is attached - `vm_name` (String) vm name from whom it is attached ---