Skip to content

Latest commit

 

History

History
30 lines (25 loc) · 840 Bytes

ubuntu-edge.md

File metadata and controls

30 lines (25 loc) · 840 Bytes
sidebar_label title description hide_table_of_contents type category sidebar_class_name logoUrl tags
Ubuntu
Ubuntu
Choose Ubuntu Operating System pack in Palette.
true
integration
operating system
amd64
hide-from-sidebar
packs
ubuntu
operating system

Terraform

You can reference Ubuntu in Terraform with the following code snippet.

data "spectrocloud_registry" "public_registry" {
  name = "Public Repo"
}

data "spectrocloud_pack_simple" "ubuntu" {
  name    = "ubuntu-edge"
  version = "22.04"
  type = "helm"
  registry_uid = data.spectrocloud_registry.public_registry.id
}