Azure Managed Applications Managed Application

This page shows how to write Terraform for Managed Applications Managed Application and write them securely.

azurerm_managed_application (Terraform)

The Managed Application in Managed Applications can be configured in Terraform with the resource name azurerm_managed_application. The following sections describe 2 examples of how to use the resource and its parameters.

Example Usage from GitHub

main.tf#L7
resource "azurerm_managed_application" "this" {
  application_definition_id   = var.application_definition_id
  kind                        = var.kind
  location                    = var.location
  managed_resource_group_name = var.managed_resource_group_name
  name                        = var.name
hcs.tf#L22
resource "azurerm_managed_application" "hcs" {
  depends_on = [azurerm_marketplace_agreement.hcs]

  name                        = "hcs"
  location                    = azurerm_resource_group.example.location
  resource_group_name         = azurerm_resource_group.example.name

Review your Terraform file for Azure best practices

Shisho Cloud, our free checker to make sure your Terraform configuration follows best practices, is available (beta).

Parameters

Explanation in Terraform Registry

Manages a Managed Application.

Azure Resource Manager Example

Azure Resource Manager code does not have the related resource.

Frequently asked questions

What is Azure Managed Applications Managed Application?

Azure Managed Applications Managed Application is a resource for Managed Applications of Microsoft Azure. Settings can be wrote in Terraform.

Where can I find the example code for the Azure Managed Applications Managed Application?

For Terraform, the niveklabs/azurerm and nicholasjackson/demo_azure_hashicorp_cloud source code examples are useful. See the Terraform Example section for further details.

security-icon

Automate config file reviews on your commits

Fix issues in your infrastructure as code with auto-generated patches.