Uses this data source to access information about an existing Managed Application Definition.
provider "azurerm" {
features {}
}
data "azurerm_managed_application_definition" "example" {
name = "examplemanagedappdef"
resource_group_name = "exampleresources"
}
output "id" {
value = data.azurerm_managed_application_definition.example.id
}
The following arguments are supported:
name
- (Required) Specifies the name of the Managed Application Definition.
resource_group_name
- (Required) Specifies the name of the Resource Group where this Managed Application Definition exists.
location
- The Azure location where the resource exists.
The following attributes are exported:
id
- The ID of the Managed Application Definition.The timeouts
block allows you to specify timeouts for certain actions:
read
- (Defaults to 5 minutes) Used when retrieving the Managed Application Definition.