You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
module"azurerm_managed_application" {
source="./modules/azurerm/r/azurerm_managed_application"# application_definition_id - (optional) is a type of stringapplication_definition_id=null# kind - (required) is a type of stringkind=null# location - (required) is a type of stringlocation=null# managed_resource_group_name - (required) is a type of stringmanaged_resource_group_name=null# name - (required) is a type of stringname=null# parameters - (optional) is a type of map of stringparameters={}
# resource_group_name - (required) is a type of stringresource_group_name=null# tags - (optional) is a type of map of stringtags={}
plan=[{
name =null
product =null
promotion_code =null
publisher =null
version =null
}]
timeouts=[{
create =null
delete =null
read =null
update =null
}]
}
resource"azurerm_managed_application""this" {
# application_definition_id - (optional) is a type of stringapplication_definition_id=var.application_definition_id# kind - (required) is a type of stringkind=var.kind# location - (required) is a type of stringlocation=var.location# managed_resource_group_name - (required) is a type of stringmanaged_resource_group_name=var.managed_resource_group_name# name - (required) is a type of stringname=var.name# parameters - (optional) is a type of map of stringparameters=var.parameters# resource_group_name - (required) is a type of stringresource_group_name=var.resource_group_name# tags - (optional) is a type of map of stringtags=var.tagsdynamic"plan" {
for_each=var.plancontent {
# name - (required) is a type of stringname=plan.value["name"]
# product - (required) is a type of stringproduct=plan.value["product"]
# promotion_code - (optional) is a type of stringpromotion_code=plan.value["promotion_code"]
# publisher - (required) is a type of stringpublisher=plan.value["publisher"]
# version - (required) is a type of stringversion=plan.value["version"]
}
}
dynamic"timeouts" {
for_each=var.timeoutscontent {
# create - (optional) is a type of stringcreate=timeouts.value["create"]
# delete - (optional) is a type of stringdelete=timeouts.value["delete"]
# read - (optional) is a type of stringread=timeouts.value["read"]
# update - (optional) is a type of stringupdate=timeouts.value["update"]
}
}
}