1. Packages
  2. stackit
  3. API Docs
  4. getImageV2
Viewing docs for stackit v0.0.4
published on Friday, Feb 20, 2026 by stackitcloud
stackit logo
Viewing docs for stackit v0.0.4
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 dictionary

    The following arguments are supported:

    ProjectId string
    STACKIT project ID to which the image is associated.
    Filter GetImageV2Filter
    Additional filtering options based on image properties. Can be used independently or in conjunction with name or name_regex.
    ImageId string
    Image ID to fetch directly
    Name string
    Exact image name to match. Optionally applies a filter block 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 with name_regex.
    NameRegex string
    Regular expression to match against image names. Optionally applies a filter block 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 with name.
    Region string
    The resource region. If not defined, the provider region is used.
    SortAscending bool
    If set to true, images are sorted in ascending lexicographical order by image name (such as Ubuntu 18.04, Ubuntu 20.04, Ubuntu 22.04) before selecting the first match. Defaults to false (descending such as Ubuntu 22.04, Ubuntu 20.04, Ubuntu 18.04).
    ProjectId string
    STACKIT project ID to which the image is associated.
    Filter GetImageV2Filter
    Additional filtering options based on image properties. Can be used independently or in conjunction with name or name_regex.
    ImageId string
    Image ID to fetch directly
    Name string
    Exact image name to match. Optionally applies a filter block 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 with name_regex.
    NameRegex string
    Regular expression to match against image names. Optionally applies a filter block 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 with name.
    Region string
    The resource region. If not defined, the provider region is used.
    SortAscending bool
    If set to true, images are sorted in ascending lexicographical order by image name (such as Ubuntu 18.04, Ubuntu 20.04, Ubuntu 22.04) before selecting the first match. Defaults to false (descending such as Ubuntu 22.04, Ubuntu 20.04, Ubuntu 18.04).
    projectId String
    STACKIT project ID to which the image is associated.
    filter GetImageV2Filter
    Additional filtering options based on image properties. Can be used independently or in conjunction with name or name_regex.
    imageId String
    Image ID to fetch directly
    name String
    Exact image name to match. Optionally applies a filter block 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 with name_regex.
    nameRegex String
    Regular expression to match against image names. Optionally applies a filter block 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 with name.
    region String
    The resource region. If not defined, the provider region is used.
    sortAscending Boolean
    If set to true, images are sorted in ascending lexicographical order by image name (such as Ubuntu 18.04, Ubuntu 20.04, Ubuntu 22.04) before selecting the first match. Defaults to false (descending such as Ubuntu 22.04, Ubuntu 20.04, Ubuntu 18.04).
    projectId string
    STACKIT project ID to which the image is associated.
    filter GetImageV2Filter
    Additional filtering options based on image properties. Can be used independently or in conjunction with name or name_regex.
    imageId string
    Image ID to fetch directly
    name string
    Exact image name to match. Optionally applies a filter block 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 with name_regex.
    nameRegex string
    Regular expression to match against image names. Optionally applies a filter block 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 with name.
    region string
    The resource region. If not defined, the provider region is used.
    sortAscending boolean
    If set to true, images are sorted in ascending lexicographical order by image name (such as Ubuntu 18.04, Ubuntu 20.04, Ubuntu 22.04) before selecting the first match. Defaults to false (descending such as Ubuntu 22.04, Ubuntu 20.04, Ubuntu 18.04).
    project_id str
    STACKIT project ID to which the image is associated.
    filter GetImageV2Filter
    Additional filtering options based on image properties. Can be used independently or in conjunction with name or name_regex.
    image_id str
    Image ID to fetch directly
    name str
    Exact image name to match. Optionally applies a filter block 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 with name_regex.
    name_regex str
    Regular expression to match against image names. Optionally applies a filter block 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 with name.
    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 as Ubuntu 18.04, Ubuntu 20.04, Ubuntu 22.04) before selecting the first match. Defaults to false (descending such as Ubuntu 22.04, Ubuntu 20.04, Ubuntu 18.04).
    projectId 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 name or name_regex.
    imageId String
    Image ID to fetch directly
    name String
    Exact image name to match. Optionally applies a filter block 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 with name_regex.
    nameRegex String
    Regular expression to match against image names. Optionally applies a filter block 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 with name.
    region String
    The resource region. If not defined, the provider region is used.
    sortAscending Boolean
    If set to true, images are sorted in ascending lexicographical order by image name (such as Ubuntu 18.04, Ubuntu 20.04, Ubuntu 22.04) before selecting the first match. Defaults to false (descending such as Ubuntu 22.04, Ubuntu 20.04, Ubuntu 18.04).

    getImageV2 Result

    The following output properties are available:

    Checksum GetImageV2Checksum
    Representation of an image checksum.
    Config GetImageV2Config
    Properties to set hardware and scheduling settings for an image.
    DiskFormat 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
    MinDiskSize int
    The minimum disk size of the image in GB.
    MinRam int
    The minimum RAM of the image in MB.
    ProjectId 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 GetImageV2Filter
    Additional filtering options based on image properties. Can be used independently or in conjunction with name or name_regex.
    ImageId string
    Image ID to fetch directly
    Name string
    Exact image name to match. Optionally applies a filter block 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 with name_regex.
    NameRegex string
    Regular expression to match against image names. Optionally applies a filter block 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 with name.
    Region string
    The resource region. If not defined, the provider region is used.
    SortAscending bool
    If set to true, images are sorted in ascending lexicographical order by image name (such as Ubuntu 18.04, Ubuntu 20.04, Ubuntu 22.04) before selecting the first match. Defaults to false (descending such as Ubuntu 22.04, Ubuntu 20.04, Ubuntu 18.04).
    Checksum GetImageV2Checksum
    Representation of an image checksum.
    Config GetImageV2Config
    Properties to set hardware and scheduling settings for an image.
    DiskFormat 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
    MinDiskSize int
    The minimum disk size of the image in GB.
    MinRam int
    The minimum RAM of the image in MB.
    ProjectId 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 GetImageV2Filter
    Additional filtering options based on image properties. Can be used independently or in conjunction with name or name_regex.
    ImageId string
    Image ID to fetch directly
    Name string
    Exact image name to match. Optionally applies a filter block 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 with name_regex.
    NameRegex string
    Regular expression to match against image names. Optionally applies a filter block 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 with name.
    Region string
    The resource region. If not defined, the provider region is used.
    SortAscending bool
    If set to true, images are sorted in ascending lexicographical order by image name (such as Ubuntu 18.04, Ubuntu 20.04, Ubuntu 22.04) before selecting the first match. Defaults to false (descending such as Ubuntu 22.04, Ubuntu 20.04, Ubuntu 18.04).
    checksum GetImageV2Checksum
    Representation of an image checksum.
    config GetImageV2Config
    Properties to set hardware and scheduling settings for an image.
    diskFormat 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
    minDiskSize Integer
    The minimum disk size of the image in GB.
    minRam Integer
    The minimum RAM of the image in MB.
    projectId 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 GetImageV2Filter
    Additional filtering options based on image properties. Can be used independently or in conjunction with name or name_regex.
    imageId String
    Image ID to fetch directly
    name String
    Exact image name to match. Optionally applies a filter block 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 with name_regex.
    nameRegex String
    Regular expression to match against image names. Optionally applies a filter block 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 with name.
    region String
    The resource region. If not defined, the provider region is used.
    sortAscending Boolean
    If set to true, images are sorted in ascending lexicographical order by image name (such as Ubuntu 18.04, Ubuntu 20.04, Ubuntu 22.04) before selecting the first match. Defaults to false (descending such as Ubuntu 22.04, Ubuntu 20.04, Ubuntu 18.04).
    checksum GetImageV2Checksum
    Representation of an image checksum.
    config GetImageV2Config
    Properties to set hardware and scheduling settings for an image.
    diskFormat 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
    minDiskSize number
    The minimum disk size of the image in GB.
    minRam number
    The minimum RAM of the image in MB.
    projectId 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 GetImageV2Filter
    Additional filtering options based on image properties. Can be used independently or in conjunction with name or name_regex.
    imageId string
    Image ID to fetch directly
    name string
    Exact image name to match. Optionally applies a filter block 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 with name_regex.
    nameRegex string
    Regular expression to match against image names. Optionally applies a filter block 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 with name.
    region string
    The resource region. If not defined, the provider region is used.
    sortAscending boolean
    If set to true, images are sorted in ascending lexicographical order by image name (such as Ubuntu 18.04, Ubuntu 20.04, Ubuntu 22.04) before selecting the first match. Defaults to false (descending such as Ubuntu 22.04, Ubuntu 20.04, Ubuntu 18.04).
    checksum GetImageV2Checksum
    Representation of an image checksum.
    config GetImageV2Config
    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_size int
    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 GetImageV2Filter
    Additional filtering options based on image properties. Can be used independently or in conjunction with name or name_regex.
    image_id str
    Image ID to fetch directly
    name str
    Exact image name to match. Optionally applies a filter block 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 with name_regex.
    name_regex str
    Regular expression to match against image names. Optionally applies a filter block 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 with name.
    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 as Ubuntu 18.04, Ubuntu 20.04, Ubuntu 22.04) before selecting the first match. Defaults to false (descending such as Ubuntu 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.
    diskFormat 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
    minDiskSize Number
    The minimum disk size of the image in GB.
    minRam Number
    The minimum RAM of the image in MB.
    projectId 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 name or name_regex.
    imageId String
    Image ID to fetch directly
    name String
    Exact image name to match. Optionally applies a filter block 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 with name_regex.
    nameRegex String
    Regular expression to match against image names. Optionally applies a filter block 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 with name.
    region String
    The resource region. If not defined, the provider region is used.
    sortAscending Boolean
    If set to true, images are sorted in ascending lexicographical order by image name (such as Ubuntu 18.04, Ubuntu 20.04, Ubuntu 22.04) before selecting the first match. Defaults to false (descending such as Ubuntu 22.04, Ubuntu 20.04, Ubuntu 18.04).

    Supporting Types

    GetImageV2Checksum

    Algorithm string
    Algorithm for the checksum of the image data.
    Digest string
    Hexdigest of the checksum of the image data.
    Algorithm string
    Algorithm for the checksum of the image data.
    Digest string
    Hexdigest of the checksum of the image data.
    algorithm String
    Algorithm for the checksum of the image data.
    digest String
    Hexdigest of the checksum of the image data.
    algorithm string
    Algorithm for the checksum of the image data.
    digest string
    Hexdigest of the checksum of the image data.
    algorithm str
    Algorithm for the checksum of the image data.
    digest str
    Hexdigest of the checksum of the image data.
    algorithm String
    Algorithm for the checksum of the image data.
    digest String
    Hexdigest of the checksum of the image data.

    GetImageV2Config

    BootMenu bool
    Enables the BIOS bootmenu.
    CdromBus string
    Sets CDROM bus controller type.
    DiskBus string
    Sets Disk bus controller type.
    NicModel string
    Sets virtual network interface model.
    OperatingSystem string
    Enables operating system specific optimizations.
    OperatingSystemDistro string
    Operating system distribution.
    OperatingSystemVersion string
    Version of the operating system.
    RescueBus string
    Sets the device bus when the image is used as a rescue image.
    RescueDevice string
    Sets the device when the image is used as a rescue image.
    SecureBoot bool
    Enables Secure Boot.
    Uefi bool
    Enables UEFI boot.
    VideoModel string
    Sets Graphic device model.
    VirtioScsi bool
    Enables the use of VirtIO SCSI to provide block device access. By default instances use VirtIO Block.
    BootMenu bool
    Enables the BIOS bootmenu.
    CdromBus string
    Sets CDROM bus controller type.
    DiskBus string
    Sets Disk bus controller type.
    NicModel string
    Sets virtual network interface model.
    OperatingSystem string
    Enables operating system specific optimizations.
    OperatingSystemDistro string
    Operating system distribution.
    OperatingSystemVersion string
    Version of the operating system.
    RescueBus string
    Sets the device bus when the image is used as a rescue image.
    RescueDevice string
    Sets the device when the image is used as a rescue image.
    SecureBoot bool
    Enables Secure Boot.
    Uefi bool
    Enables UEFI boot.
    VideoModel string
    Sets Graphic device model.
    VirtioScsi bool
    Enables the use of VirtIO SCSI to provide block device access. By default instances use VirtIO Block.
    bootMenu Boolean
    Enables the BIOS bootmenu.
    cdromBus String
    Sets CDROM bus controller type.
    diskBus String
    Sets Disk bus controller type.
    nicModel String
    Sets virtual network interface model.
    operatingSystem String
    Enables operating system specific optimizations.
    operatingSystemDistro String
    Operating system distribution.
    operatingSystemVersion String
    Version of the operating system.
    rescueBus String
    Sets the device bus when the image is used as a rescue image.
    rescueDevice String
    Sets the device when the image is used as a rescue image.
    secureBoot Boolean
    Enables Secure Boot.
    uefi Boolean
    Enables UEFI boot.
    videoModel String
    Sets Graphic device model.
    virtioScsi Boolean
    Enables the use of VirtIO SCSI to provide block device access. By default instances use VirtIO Block.
    bootMenu boolean
    Enables the BIOS bootmenu.
    cdromBus string
    Sets CDROM bus controller type.
    diskBus string
    Sets Disk bus controller type.
    nicModel string
    Sets virtual network interface model.
    operatingSystem string
    Enables operating system specific optimizations.
    operatingSystemDistro string
    Operating system distribution.
    operatingSystemVersion string
    Version of the operating system.
    rescueBus string
    Sets the device bus when the image is used as a rescue image.
    rescueDevice string
    Sets the device when the image is used as a rescue image.
    secureBoot boolean
    Enables Secure Boot.
    uefi boolean
    Enables UEFI boot.
    videoModel string
    Sets Graphic device model.
    virtioScsi boolean
    Enables the use of VirtIO SCSI to provide block device access. By default instances use VirtIO Block.
    boot_menu 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_distro str
    Operating system distribution.
    operating_system_version str
    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.
    bootMenu Boolean
    Enables the BIOS bootmenu.
    cdromBus String
    Sets CDROM bus controller type.
    diskBus String
    Sets Disk bus controller type.
    nicModel String
    Sets virtual network interface model.
    operatingSystem String
    Enables operating system specific optimizations.
    operatingSystemDistro String
    Operating system distribution.
    operatingSystemVersion String
    Version of the operating system.
    rescueBus String
    Sets the device bus when the image is used as a rescue image.
    rescueDevice String
    Sets the device when the image is used as a rescue image.
    secureBoot Boolean
    Enables Secure Boot.
    uefi Boolean
    Enables UEFI boot.
    videoModel String
    Sets Graphic device model.
    virtioScsi 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 linux or windows.
    SecureBoot bool
    Filter images with Secure Boot support. Set to true to match images that support Secure Boot.
    Uefi bool
    Filter images based on UEFI support. Set to true to match images that support UEFI.
    Version string
    Filter images by OS distribution version, such as 22.04, 11, or 9.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 linux or windows.
    SecureBoot bool
    Filter images with Secure Boot support. Set to true to match images that support Secure Boot.
    Uefi bool
    Filter images based on UEFI support. Set to true to match images that support UEFI.
    Version string
    Filter images by OS distribution version, such as 22.04, 11, or 9.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 linux or windows.
    secureBoot Boolean
    Filter images with Secure Boot support. Set to true to match images that support Secure Boot.
    uefi Boolean
    Filter images based on UEFI support. Set to true to match images that support UEFI.
    version String
    Filter images by OS distribution version, such as 22.04, 11, or 9.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 linux or windows.
    secureBoot boolean
    Filter images with Secure Boot support. Set to true to match images that support Secure Boot.
    uefi boolean
    Filter images based on UEFI support. Set to true to match images that support UEFI.
    version string
    Filter images by OS distribution version, such as 22.04, 11, or 9.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 linux or windows.
    secure_boot bool
    Filter images with Secure Boot support. Set to true to match images that support Secure Boot.
    uefi bool
    Filter images based on UEFI support. Set to true to match images that support UEFI.
    version str
    Filter images by OS distribution version, such as 22.04, 11, or 9.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 linux or windows.
    secureBoot Boolean
    Filter images with Secure Boot support. Set to true to match images that support Secure Boot.
    uefi Boolean
    Filter images based on UEFI support. Set to true to match images that support UEFI.
    version String
    Filter images by OS distribution version, such as 22.04, 11, or 9.1.

    Package Details

    Repository
    stackit stackitcloud/pulumi-stackit
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the stackit Terraform Provider.
    stackit logo
    Viewing docs for stackit v0.0.4
    published on Friday, Feb 20, 2026 by stackitcloud
      Try Pulumi Cloud free. Your team will thank you.