» azurerm_shared_image_gallery

Manages a Shared Image Gallery.

» Example Usage

resource "azurerm_resource_group" "test" {
  name     = "example-resources"
  location = "West Europe"
}

resource "azurerm_shared_image_gallery" "test" {
  name                = "example_image_gallery"
  resource_group_name = "${azurerm_resource_group.test.name}"
  location            = "${azurerm_resource_group.test.location}"
  description         = "Shared images and things."

  tags = {
    Hello = "There"
    World = "Example"
  }
}

» Argument Reference

The following arguments are supported:

  • name - (Required) Specifies the name of the Shared Image Gallery. Changing this forces a new resource to be created.

  • resource_group_name - (Required) The name of the resource group in which to create the Shared Image Gallery. Changing this forces a new resource to be created.

  • location - (Required) Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.

  • description - (Optional) A description for this Shared Image Gallery.

  • tags - (Optional) A mapping of tags to assign to the Shared Image Gallery.

» Attributes Reference

The following attributes are exported:

  • id - The ID of the Shared Image Gallery.

  • unique_name - The Unique Name for this Shared Image Gallery.

» Import

Shared Image Galleries can be imported using the resource id, e.g.

terraform import azurerm_shared_image_gallery.gallery1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Compute/galleries/gallery1