Shurkys
Shurkys
https://github.com/shurkys/linstor-gui. The repository is currently incomplete and is more suitable for browsing resources rather than creating them. But some can be created.
Added documentation and renamed the `user` label to the `username` for better readability
Reopen plz: ```code terragrunt import module.talos.opennebula_service.talos 11 data.terraform_remote_state.infrastructure: Reading... module.talos.opennebula_service.talos: Importing from ID "11"... module.talos.opennebula_service.talos: Import prepared! Prepared opennebula_service for import module.talos.opennebula_service.talos: Refreshing state... [id=11] data.terraform_remote_state.infrastructure: Read complete after 1s...
``` hcl variable "opennebula_endpoint" { default = "http://192.168.1.5:2633/RPC2" } variable "opennebula_flow_endpoint" { default = "http://192.168.1.5:2474" } variable "opennebula_username" { default = "oneadmin" } variable "opennebula_password" { default = "oneadmin" }...
Now, in `opennebula_virtual_network_address_range`, if you specify the `address_range_id`, it will return only one range. Here's an example using HCL: ```hcl data "opennebula_virtual_network_address_range" "Controlplane" { virtual_network_id = data.opennebula_virtual_network.Controlplane.id address_range_id = 0...
Now, when using this data source `opennebula_virtual_network_address_range`, you must provide the `address_range_id` parameter, which specifies the ID of the address range you want information for. Additionally, I've introduced a new...
By the way, could you take a quick look at https://github.com/OpenNebula/terraform-provider-opennebula/pull/532 when you get a chance? It's closed now, but it might still be useful to review.
Some thoughts on why `opennebula_virtual_network_address_ranges` makes sense. For example, we can create multiple networks at once, like in this example: [#532](https://github.com/OpenNebula/terraform-provider-opennebula/pull/532#issuecomment-2383747940): ```hcl networks = { test1 = "M|network|test1| |reserve_from:${data.opennebula_virtual_network.test.id}:SIZE=1" test2...
> CI status seems related: Yes, I’m not a programmer and I'm having difficulties with the tests. I haven't been able to figure out what's wrong yet.