Viewing docs for stackit v0.0.4
published on Friday, Feb 20, 2026 by stackitcloud
published on Friday, Feb 20, 2026 by stackitcloud
Viewing docs for stackit v0.0.4
published on Friday, Feb 20, 2026 by stackitcloud
published on Friday, Feb 20, 2026 by stackitcloud
Example Usage
data "stackit_image_v2" "default" {
project_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
image_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
}
data "stackit_image_v2" "name_match" {
project_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
name = "Ubuntu 22.04"
}
data "stackit_image_v2" "name_regex_latest" {
project_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
name_regex = "^Ubuntu .*"
}
data "stackit_image_v2" "name_regex_oldest" {
project_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
name_regex = "^Ubuntu .*"
sort_ascending = true
}
data "stackit_image_v2" "filter_distro_version" {
project_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
filter = {
distro = "debian"
version = "11"
}
}
Using getImageV2
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getImageV2(args: GetImageV2Args, opts?: InvokeOptions): Promise<GetImageV2Result>
function getImageV2Output(args: GetImageV2OutputArgs, opts?: InvokeOptions): Output<GetImageV2Result>def get_image_v2(filter: Optional[GetImageV2Filter] = None,
image_id: Optional[str] = None,
name: Optional[str] = None,
name_regex: Optional[str] = None,
project_id: Optional[str] = None,
region: Optional[str] = None,
sort_ascending: Optional[bool] = None,
opts: Optional[InvokeOptions] = None) -> GetImageV2Result
def get_image_v2_output(filter: Optional[pulumi.Input[GetImageV2FilterArgs]] = None,
image_id: Optional[pulumi.Input[str]] = None,
name: Optional[pulumi.Input[str]] = None,
name_regex: Optional[pulumi.Input[str]] = None,
project_id: Optional[pulumi.Input[str]] = None,
region: Optional[pulumi.Input[str]] = None,
sort_ascending: Optional[pulumi.Input[bool]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetImageV2Result]func GetImageV2(ctx *Context, args *GetImageV2Args, opts ...InvokeOption) (*GetImageV2Result, error)
func GetImageV2Output(ctx *Context, args *GetImageV2OutputArgs, opts ...InvokeOption) GetImageV2ResultOutput> Note: This function is named GetImageV2 in the Go SDK.
public static class GetImageV2
{
public static Task<GetImageV2Result> InvokeAsync(GetImageV2Args args, InvokeOptions? opts = null)
public static Output<GetImageV2Result> Invoke(GetImageV2InvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetImageV2Result> getImageV2(GetImageV2Args args, InvokeOptions options)
public static Output<GetImageV2Result> getImageV2(GetImageV2Args args, InvokeOptions options)
fn::invoke:
function: stackit:index/getImageV2:getImageV2
arguments:
# arguments dictionaryThe following arguments are supported:
- Project
Id string - STACKIT project ID to which the image is associated.
- Filter
Get
Image V2Filter - Additional filtering options based on image properties. Can be used independently or in conjunction with
nameorname_regex. - Image
Id string - Image ID to fetch directly
- Name string
- Exact image name to match. Optionally applies a
filterblock to further refine results in case multiple images share the same name. The first match is returned, optionally sorted by name in ascending order. Cannot be used together withname_regex. - Name
Regex string - Regular expression to match against image names. Optionally applies a
filterblock to narrow down results when multiple image names match the regex. The first match is returned, optionally sorted by name in ascending order. Cannot be used together withname. - Region string
- The resource region. If not defined, the provider region is used.
- Sort
Ascending bool - If set to
true, images are sorted in ascending lexicographical order by image name (such asUbuntu 18.04,Ubuntu 20.04,Ubuntu 22.04) before selecting the first match. Defaults tofalse(descending such asUbuntu 22.04,Ubuntu 20.04,Ubuntu 18.04).
- Project
Id string - STACKIT project ID to which the image is associated.
- Filter
Get
Image V2Filter - Additional filtering options based on image properties. Can be used independently or in conjunction with
nameorname_regex. - Image
Id string - Image ID to fetch directly
- Name string
- Exact image name to match. Optionally applies a
filterblock to further refine results in case multiple images share the same name. The first match is returned, optionally sorted by name in ascending order. Cannot be used together withname_regex. - Name
Regex string - Regular expression to match against image names. Optionally applies a
filterblock to narrow down results when multiple image names match the regex. The first match is returned, optionally sorted by name in ascending order. Cannot be used together withname. - Region string
- The resource region. If not defined, the provider region is used.
- Sort
Ascending bool - If set to
true, images are sorted in ascending lexicographical order by image name (such asUbuntu 18.04,Ubuntu 20.04,Ubuntu 22.04) before selecting the first match. Defaults tofalse(descending such asUbuntu 22.04,Ubuntu 20.04,Ubuntu 18.04).
- project
Id String - STACKIT project ID to which the image is associated.
- filter
Get
Image V2Filter - Additional filtering options based on image properties. Can be used independently or in conjunction with
nameorname_regex. - image
Id String - Image ID to fetch directly
- name String
- Exact image name to match. Optionally applies a
filterblock to further refine results in case multiple images share the same name. The first match is returned, optionally sorted by name in ascending order. Cannot be used together withname_regex. - name
Regex String - Regular expression to match against image names. Optionally applies a
filterblock to narrow down results when multiple image names match the regex. The first match is returned, optionally sorted by name in ascending order. Cannot be used together withname. - region String
- The resource region. If not defined, the provider region is used.
- sort
Ascending Boolean - If set to
true, images are sorted in ascending lexicographical order by image name (such asUbuntu 18.04,Ubuntu 20.04,Ubuntu 22.04) before selecting the first match. Defaults tofalse(descending such asUbuntu 22.04,Ubuntu 20.04,Ubuntu 18.04).
- project
Id string - STACKIT project ID to which the image is associated.
- filter
Get
Image V2Filter - Additional filtering options based on image properties. Can be used independently or in conjunction with
nameorname_regex. - image
Id string - Image ID to fetch directly
- name string
- Exact image name to match. Optionally applies a
filterblock to further refine results in case multiple images share the same name. The first match is returned, optionally sorted by name in ascending order. Cannot be used together withname_regex. - name
Regex string - Regular expression to match against image names. Optionally applies a
filterblock to narrow down results when multiple image names match the regex. The first match is returned, optionally sorted by name in ascending order. Cannot be used together withname. - region string
- The resource region. If not defined, the provider region is used.
- sort
Ascending boolean - If set to
true, images are sorted in ascending lexicographical order by image name (such asUbuntu 18.04,Ubuntu 20.04,Ubuntu 22.04) before selecting the first match. Defaults tofalse(descending such asUbuntu 22.04,Ubuntu 20.04,Ubuntu 18.04).
- project_
id str - STACKIT project ID to which the image is associated.
- filter
Get
Image V2Filter - Additional filtering options based on image properties. Can be used independently or in conjunction with
nameorname_regex. - image_
id str - Image ID to fetch directly
- name str
- Exact image name to match. Optionally applies a
filterblock to further refine results in case multiple images share the same name. The first match is returned, optionally sorted by name in ascending order. Cannot be used together withname_regex. - name_
regex str - Regular expression to match against image names. Optionally applies a
filterblock to narrow down results when multiple image names match the regex. The first match is returned, optionally sorted by name in ascending order. Cannot be used together withname. - region str
- The resource region. If not defined, the provider region is used.
- sort_
ascending bool - If set to
true, images are sorted in ascending lexicographical order by image name (such asUbuntu 18.04,Ubuntu 20.04,Ubuntu 22.04) before selecting the first match. Defaults tofalse(descending such asUbuntu 22.04,Ubuntu 20.04,Ubuntu 18.04).
- project
Id String - STACKIT project ID to which the image is associated.
- filter Property Map
- Additional filtering options based on image properties. Can be used independently or in conjunction with
nameorname_regex. - image
Id String - Image ID to fetch directly
- name String
- Exact image name to match. Optionally applies a
filterblock to further refine results in case multiple images share the same name. The first match is returned, optionally sorted by name in ascending order. Cannot be used together withname_regex. - name
Regex String - Regular expression to match against image names. Optionally applies a
filterblock to narrow down results when multiple image names match the regex. The first match is returned, optionally sorted by name in ascending order. Cannot be used together withname. - region String
- The resource region. If not defined, the provider region is used.
- sort
Ascending Boolean - If set to
true, images are sorted in ascending lexicographical order by image name (such asUbuntu 18.04,Ubuntu 20.04,Ubuntu 22.04) before selecting the first match. Defaults tofalse(descending such asUbuntu 22.04,Ubuntu 20.04,Ubuntu 18.04).
getImageV2 Result
The following output properties are available:
- Checksum
Get
Image V2Checksum - Representation of an image checksum.
- Config
Get
Image V2Config - Properties to set hardware and scheduling settings for an image.
- Disk
Format string - The disk format of the image.
- Id string
- Labels Dictionary<string, string>
- Labels are key-value string pairs which can be attached to a resource container
- Min
Disk intSize - The minimum disk size of the image in GB.
- Min
Ram int - The minimum RAM of the image in MB.
- Project
Id string - STACKIT project ID to which the image is associated.
- Protected bool
- Whether the image is protected.
- Scope string
- The scope of the image.
- Filter
Get
Image V2Filter - Additional filtering options based on image properties. Can be used independently or in conjunction with
nameorname_regex. - Image
Id string - Image ID to fetch directly
- Name string
- Exact image name to match. Optionally applies a
filterblock to further refine results in case multiple images share the same name. The first match is returned, optionally sorted by name in ascending order. Cannot be used together withname_regex. - Name
Regex string - Regular expression to match against image names. Optionally applies a
filterblock to narrow down results when multiple image names match the regex. The first match is returned, optionally sorted by name in ascending order. Cannot be used together withname. - Region string
- The resource region. If not defined, the provider region is used.
- Sort
Ascending bool - If set to
true, images are sorted in ascending lexicographical order by image name (such asUbuntu 18.04,Ubuntu 20.04,Ubuntu 22.04) before selecting the first match. Defaults tofalse(descending such asUbuntu 22.04,Ubuntu 20.04,Ubuntu 18.04).
- Checksum
Get
Image V2Checksum - Representation of an image checksum.
- Config
Get
Image V2Config - Properties to set hardware and scheduling settings for an image.
- Disk
Format string - The disk format of the image.
- Id string
- Labels map[string]string
- Labels are key-value string pairs which can be attached to a resource container
- Min
Disk intSize - The minimum disk size of the image in GB.
- Min
Ram int - The minimum RAM of the image in MB.
- Project
Id string - STACKIT project ID to which the image is associated.
- Protected bool
- Whether the image is protected.
- Scope string
- The scope of the image.
- Filter
Get
Image V2Filter - Additional filtering options based on image properties. Can be used independently or in conjunction with
nameorname_regex. - Image
Id string - Image ID to fetch directly
- Name string
- Exact image name to match. Optionally applies a
filterblock to further refine results in case multiple images share the same name. The first match is returned, optionally sorted by name in ascending order. Cannot be used together withname_regex. - Name
Regex string - Regular expression to match against image names. Optionally applies a
filterblock to narrow down results when multiple image names match the regex. The first match is returned, optionally sorted by name in ascending order. Cannot be used together withname. - Region string
- The resource region. If not defined, the provider region is used.
- Sort
Ascending bool - If set to
true, images are sorted in ascending lexicographical order by image name (such asUbuntu 18.04,Ubuntu 20.04,Ubuntu 22.04) before selecting the first match. Defaults tofalse(descending such asUbuntu 22.04,Ubuntu 20.04,Ubuntu 18.04).
- checksum
Get
Image V2Checksum - Representation of an image checksum.
- config
Get
Image V2Config - Properties to set hardware and scheduling settings for an image.
- disk
Format String - The disk format of the image.
- id String
- labels Map<String,String>
- Labels are key-value string pairs which can be attached to a resource container
- min
Disk IntegerSize - The minimum disk size of the image in GB.
- min
Ram Integer - The minimum RAM of the image in MB.
- project
Id String - STACKIT project ID to which the image is associated.
- protected_ Boolean
- Whether the image is protected.
- scope String
- The scope of the image.
- filter
Get
Image V2Filter - Additional filtering options based on image properties. Can be used independently or in conjunction with
nameorname_regex. - image
Id String - Image ID to fetch directly
- name String
- Exact image name to match. Optionally applies a
filterblock to further refine results in case multiple images share the same name. The first match is returned, optionally sorted by name in ascending order. Cannot be used together withname_regex. - name
Regex String - Regular expression to match against image names. Optionally applies a
filterblock to narrow down results when multiple image names match the regex. The first match is returned, optionally sorted by name in ascending order. Cannot be used together withname. - region String
- The resource region. If not defined, the provider region is used.
- sort
Ascending Boolean - If set to
true, images are sorted in ascending lexicographical order by image name (such asUbuntu 18.04,Ubuntu 20.04,Ubuntu 22.04) before selecting the first match. Defaults tofalse(descending such asUbuntu 22.04,Ubuntu 20.04,Ubuntu 18.04).
- checksum
Get
Image V2Checksum - Representation of an image checksum.
- config
Get
Image V2Config - Properties to set hardware and scheduling settings for an image.
- disk
Format string - The disk format of the image.
- id string
- labels {[key: string]: string}
- Labels are key-value string pairs which can be attached to a resource container
- min
Disk numberSize - The minimum disk size of the image in GB.
- min
Ram number - The minimum RAM of the image in MB.
- project
Id string - STACKIT project ID to which the image is associated.
- protected boolean
- Whether the image is protected.
- scope string
- The scope of the image.
- filter
Get
Image V2Filter - Additional filtering options based on image properties. Can be used independently or in conjunction with
nameorname_regex. - image
Id string - Image ID to fetch directly
- name string
- Exact image name to match. Optionally applies a
filterblock to further refine results in case multiple images share the same name. The first match is returned, optionally sorted by name in ascending order. Cannot be used together withname_regex. - name
Regex string - Regular expression to match against image names. Optionally applies a
filterblock to narrow down results when multiple image names match the regex. The first match is returned, optionally sorted by name in ascending order. Cannot be used together withname. - region string
- The resource region. If not defined, the provider region is used.
- sort
Ascending boolean - If set to
true, images are sorted in ascending lexicographical order by image name (such asUbuntu 18.04,Ubuntu 20.04,Ubuntu 22.04) before selecting the first match. Defaults tofalse(descending such asUbuntu 22.04,Ubuntu 20.04,Ubuntu 18.04).
- checksum
Get
Image V2Checksum - Representation of an image checksum.
- config
Get
Image V2Config - Properties to set hardware and scheduling settings for an image.
- disk_
format str - The disk format of the image.
- id str
- labels Mapping[str, str]
- Labels are key-value string pairs which can be attached to a resource container
- min_
disk_ intsize - The minimum disk size of the image in GB.
- min_
ram int - The minimum RAM of the image in MB.
- project_
id str - STACKIT project ID to which the image is associated.
- protected bool
- Whether the image is protected.
- scope str
- The scope of the image.
- filter
Get
Image V2Filter - Additional filtering options based on image properties. Can be used independently or in conjunction with
nameorname_regex. - image_
id str - Image ID to fetch directly
- name str
- Exact image name to match. Optionally applies a
filterblock to further refine results in case multiple images share the same name. The first match is returned, optionally sorted by name in ascending order. Cannot be used together withname_regex. - name_
regex str - Regular expression to match against image names. Optionally applies a
filterblock to narrow down results when multiple image names match the regex. The first match is returned, optionally sorted by name in ascending order. Cannot be used together withname. - region str
- The resource region. If not defined, the provider region is used.
- sort_
ascending bool - If set to
true, images are sorted in ascending lexicographical order by image name (such asUbuntu 18.04,Ubuntu 20.04,Ubuntu 22.04) before selecting the first match. Defaults tofalse(descending such asUbuntu 22.04,Ubuntu 20.04,Ubuntu 18.04).
- checksum Property Map
- Representation of an image checksum.
- config Property Map
- Properties to set hardware and scheduling settings for an image.
- disk
Format String - The disk format of the image.
- id String
- labels Map<String>
- Labels are key-value string pairs which can be attached to a resource container
- min
Disk NumberSize - The minimum disk size of the image in GB.
- min
Ram Number - The minimum RAM of the image in MB.
- project
Id String - STACKIT project ID to which the image is associated.
- protected Boolean
- Whether the image is protected.
- scope String
- The scope of the image.
- filter Property Map
- Additional filtering options based on image properties. Can be used independently or in conjunction with
nameorname_regex. - image
Id String - Image ID to fetch directly
- name String
- Exact image name to match. Optionally applies a
filterblock to further refine results in case multiple images share the same name. The first match is returned, optionally sorted by name in ascending order. Cannot be used together withname_regex. - name
Regex String - Regular expression to match against image names. Optionally applies a
filterblock to narrow down results when multiple image names match the regex. The first match is returned, optionally sorted by name in ascending order. Cannot be used together withname. - region String
- The resource region. If not defined, the provider region is used.
- sort
Ascending Boolean - If set to
true, images are sorted in ascending lexicographical order by image name (such asUbuntu 18.04,Ubuntu 20.04,Ubuntu 22.04) before selecting the first match. Defaults tofalse(descending such asUbuntu 22.04,Ubuntu 20.04,Ubuntu 18.04).
Supporting Types
GetImageV2Checksum
GetImageV2Config
- bool
- Enables the BIOS bootmenu.
- Cdrom
Bus string - Sets CDROM bus controller type.
- Disk
Bus string - Sets Disk bus controller type.
- Nic
Model string - Sets virtual network interface model.
- Operating
System string - Enables operating system specific optimizations.
- Operating
System stringDistro - Operating system distribution.
- Operating
System stringVersion - Version of the operating system.
- Rescue
Bus string - Sets the device bus when the image is used as a rescue image.
- Rescue
Device string - Sets the device when the image is used as a rescue image.
- Secure
Boot bool - Enables Secure Boot.
- Uefi bool
- Enables UEFI boot.
- Video
Model string - Sets Graphic device model.
- Virtio
Scsi bool - Enables the use of VirtIO SCSI to provide block device access. By default instances use VirtIO Block.
- bool
- Enables the BIOS bootmenu.
- Cdrom
Bus string - Sets CDROM bus controller type.
- Disk
Bus string - Sets Disk bus controller type.
- Nic
Model string - Sets virtual network interface model.
- Operating
System string - Enables operating system specific optimizations.
- Operating
System stringDistro - Operating system distribution.
- Operating
System stringVersion - Version of the operating system.
- Rescue
Bus string - Sets the device bus when the image is used as a rescue image.
- Rescue
Device string - Sets the device when the image is used as a rescue image.
- Secure
Boot bool - Enables Secure Boot.
- Uefi bool
- Enables UEFI boot.
- Video
Model string - Sets Graphic device model.
- Virtio
Scsi bool - Enables the use of VirtIO SCSI to provide block device access. By default instances use VirtIO Block.
- Boolean
- Enables the BIOS bootmenu.
- cdrom
Bus String - Sets CDROM bus controller type.
- disk
Bus String - Sets Disk bus controller type.
- nic
Model String - Sets virtual network interface model.
- operating
System String - Enables operating system specific optimizations.
- operating
System StringDistro - Operating system distribution.
- operating
System StringVersion - Version of the operating system.
- rescue
Bus String - Sets the device bus when the image is used as a rescue image.
- rescue
Device String - Sets the device when the image is used as a rescue image.
- secure
Boot Boolean - Enables Secure Boot.
- uefi Boolean
- Enables UEFI boot.
- video
Model String - Sets Graphic device model.
- virtio
Scsi Boolean - Enables the use of VirtIO SCSI to provide block device access. By default instances use VirtIO Block.
- boolean
- Enables the BIOS bootmenu.
- cdrom
Bus string - Sets CDROM bus controller type.
- disk
Bus string - Sets Disk bus controller type.
- nic
Model string - Sets virtual network interface model.
- operating
System string - Enables operating system specific optimizations.
- operating
System stringDistro - Operating system distribution.
- operating
System stringVersion - Version of the operating system.
- rescue
Bus string - Sets the device bus when the image is used as a rescue image.
- rescue
Device string - Sets the device when the image is used as a rescue image.
- secure
Boot boolean - Enables Secure Boot.
- uefi boolean
- Enables UEFI boot.
- video
Model string - Sets Graphic device model.
- virtio
Scsi boolean - Enables the use of VirtIO SCSI to provide block device access. By default instances use VirtIO Block.
- bool
- Enables the BIOS bootmenu.
- cdrom_
bus str - Sets CDROM bus controller type.
- disk_
bus str - Sets Disk bus controller type.
- nic_
model str - Sets virtual network interface model.
- operating_
system str - Enables operating system specific optimizations.
- operating_
system_ strdistro - Operating system distribution.
- operating_
system_ strversion - Version of the operating system.
- rescue_
bus str - Sets the device bus when the image is used as a rescue image.
- rescue_
device str - Sets the device when the image is used as a rescue image.
- secure_
boot bool - Enables Secure Boot.
- uefi bool
- Enables UEFI boot.
- video_
model str - Sets Graphic device model.
- virtio_
scsi bool - Enables the use of VirtIO SCSI to provide block device access. By default instances use VirtIO Block.
- Boolean
- Enables the BIOS bootmenu.
- cdrom
Bus String - Sets CDROM bus controller type.
- disk
Bus String - Sets Disk bus controller type.
- nic
Model String - Sets virtual network interface model.
- operating
System String - Enables operating system specific optimizations.
- operating
System StringDistro - Operating system distribution.
- operating
System StringVersion - Version of the operating system.
- rescue
Bus String - Sets the device bus when the image is used as a rescue image.
- rescue
Device String - Sets the device when the image is used as a rescue image.
- secure
Boot Boolean - Enables Secure Boot.
- uefi Boolean
- Enables UEFI boot.
- video
Model String - Sets Graphic device model.
- virtio
Scsi Boolean - Enables the use of VirtIO SCSI to provide block device access. By default instances use VirtIO Block.
GetImageV2Filter
- Distro string
- Filter images by operating system distribution. For example:
ubuntu,ubuntu-arm64,debian,rhel, etc. - Os string
- Filter images by operating system type, such as
linuxorwindows. - Secure
Boot bool - Filter images with Secure Boot support. Set to
trueto match images that support Secure Boot. - Uefi bool
- Filter images based on UEFI support. Set to
trueto match images that support UEFI. - Version string
- Filter images by OS distribution version, such as
22.04,11, or9.1.
- Distro string
- Filter images by operating system distribution. For example:
ubuntu,ubuntu-arm64,debian,rhel, etc. - Os string
- Filter images by operating system type, such as
linuxorwindows. - Secure
Boot bool - Filter images with Secure Boot support. Set to
trueto match images that support Secure Boot. - Uefi bool
- Filter images based on UEFI support. Set to
trueto match images that support UEFI. - Version string
- Filter images by OS distribution version, such as
22.04,11, or9.1.
- distro String
- Filter images by operating system distribution. For example:
ubuntu,ubuntu-arm64,debian,rhel, etc. - os String
- Filter images by operating system type, such as
linuxorwindows. - secure
Boot Boolean - Filter images with Secure Boot support. Set to
trueto match images that support Secure Boot. - uefi Boolean
- Filter images based on UEFI support. Set to
trueto match images that support UEFI. - version String
- Filter images by OS distribution version, such as
22.04,11, or9.1.
- distro string
- Filter images by operating system distribution. For example:
ubuntu,ubuntu-arm64,debian,rhel, etc. - os string
- Filter images by operating system type, such as
linuxorwindows. - secure
Boot boolean - Filter images with Secure Boot support. Set to
trueto match images that support Secure Boot. - uefi boolean
- Filter images based on UEFI support. Set to
trueto match images that support UEFI. - version string
- Filter images by OS distribution version, such as
22.04,11, or9.1.
- distro str
- Filter images by operating system distribution. For example:
ubuntu,ubuntu-arm64,debian,rhel, etc. - os str
- Filter images by operating system type, such as
linuxorwindows. - secure_
boot bool - Filter images with Secure Boot support. Set to
trueto match images that support Secure Boot. - uefi bool
- Filter images based on UEFI support. Set to
trueto match images that support UEFI. - version str
- Filter images by OS distribution version, such as
22.04,11, or9.1.
- distro String
- Filter images by operating system distribution. For example:
ubuntu,ubuntu-arm64,debian,rhel, etc. - os String
- Filter images by operating system type, such as
linuxorwindows. - secure
Boot Boolean - Filter images with Secure Boot support. Set to
trueto match images that support Secure Boot. - uefi Boolean
- Filter images based on UEFI support. Set to
trueto match images that support UEFI. - version String
- Filter images by OS distribution version, such as
22.04,11, or9.1.
Package Details
- Repository
- stackit stackitcloud/pulumi-stackit
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
stackitTerraform Provider.
Viewing docs for stackit v0.0.4
published on Friday, Feb 20, 2026 by stackitcloud
published on Friday, Feb 20, 2026 by stackitcloud
