feat: initial commit
- have been working on this for some time now
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
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
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user