* feat: Implement image resource and datasource * feat: Add remaining config options * feat: Make protected field only computed * feat: Update dependency to use IaaS beta API * fix: Minor fix in acc test --------- Co-authored-by: Vicente Pinto <vicente.pinto@freiheit.com>
8 lines
257 B
HCL
8 lines
257 B
HCL
resource "stackit_image" "example_image" {
|
|
project_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
|
|
name = "example-image"
|
|
disk_format = "qcow2"
|
|
local_file_path = "./path/to/image.qcow2"
|
|
min_disk_size = 10
|
|
min_ram = 5
|
|
}
|