Skip to content

Latest commit

 

History

History
51 lines (31 loc) · 1.48 KB

blueprint_published_version.html.markdown

File metadata and controls

51 lines (31 loc) · 1.48 KB
subcategory layout page_title description
Blueprints
azurerm
Azure Resource Manager: azurerm_blueprint_published_version
Gets information about an existing Blueprint Published Version

Data Source: azurerm_blueprint_published_version

Use this data source to access information about an existing Azure Blueprint Published Version

Example Usage

data "azurerm_subscription" "current" {}

data "azurerm_blueprint_published_version" "test" {
  scope_id       = data.azurerm_subscription.current.id
  blueprint_name = "exampleMGBluePrint"
  version        = "dev_v2.3"
}

Argument Reference

  • blueprint_name - (Required) The name of the Blueprint Definition

  • scope_id - (Required) The Resource ID of the scope where the Blueprint Definition is stored. This will be with either a Subscription ID or Management Group ID.

  • version - (Required) The Version name of the Published Version of the Blueprint Definition

Attribute Reference

  • id - The Azure Resource ID of the Published Version

  • type - The type of the Blueprint

  • target_scope - The target scope

  • display_name - The display name of the Blueprint Published Version

  • description - The description of the Blueprint Published Version

Timeouts

The timeouts block allows you to specify timeouts for certain actions:

  • read - (Defaults to 5 minutes) Used when retrieving the Blueprint Published Version.