Fabian Mettler
Fabian Mettler
@stgraber Regarding the storage pool volume, this PR fixes the problem that the volume takes into account the inherited configuration value: https://github.com/lxc/terraform-provider-incus/pull/66 Regarding the creation of storage pools, however, I...
Your example with `block.filesytem` is currently handled as a computed key: https://github.com/lxc/terraform-provider-incus/blob/main/internal/storage/resource_storage_volume.go#L382 as we have inherited when we forked the provider. Or am I wrong?
I see and funnily we have implemented many of those keys example already in the computed keys for the storage pool based on the driver: https://github.com/lxc/terraform-provider-incus/blob/d570e743a8285b22bbe5779844960a7254c89de1/internal/storage/resource_storage_pool.go#L337 So if I understand...
@stgraber Please have a look at https://github.com/lxc/terraform-provider-incus/pull/68 and I would be grateful if you could test whether it works as you have described.
Another problem is that even if you set a static IP address for an OCI container, the DNS entry "expires" after a certain time. The workaround for this is to...
@stgraber How would the resource definition then look like with the extended `source` field on `incus_image`?
Does that also happens when you do it like this: ```hcl resource "incus_image" "img" { source { remote = "images" alias = "alpine/edge" } aliases = [incus_image_alias.img.name] } resource "incus_image_alias"...
I believe we should revise our approach to defining aliases. Otherwise, we won’t be able to break the circular dependency. I’m curious to hear your thoughts on this alternative syntax:...
> incus client/server: `6.0` provider: `0.1.4` > > I just upgraded incus to latest, 6.6, and encountered the same error. Maybe worth noting that I'm using OpenTofu 1.8.1 (updating this...
From a provider’s perspective, it’s always preferable to handle heavy work on the server-side. However, we already have logic in our provider that queries all aliases and determines the appropriate...