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
Parameters
-
application_definition_idoptional - string -
idoptional computed - string -
kindrequired - string -
locationrequired - string -
managed_resource_group_namerequired - string -
namerequired - string -
outputsoptional computed - map from string to string -
parametersoptional - map from string to string -
resource_group_namerequired - string -
tagsoptional - map from string to string -
planlist block-
namerequired - string -
productrequired - string -
promotion_codeoptional - string -
publisherrequired - string -
versionrequired - string
-
-
timeoutssingle block
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.