terraform-incus/modules/profile/main.tf
Ben Vincent cb67816eee feat: initial commit
- have been working on this for some time now
2025-05-30 22:36:55 +10:00

16 lines
338 B
HCL

resource "incus_profile" "this" {
name = var.name
description = var.description
project = var.project
config = var.config
dynamic "device" {
for_each = var.devices
content {
name = device.value.name
type = device.value.type
properties = device.value.properties
}
}
}