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_subscription_template_deployment" {
source="./modules/azurerm/r/azurerm_subscription_template_deployment"# debug_level - (optional) is a type of stringdebug_level=null# location - (required) is a type of stringlocation=null# name - (required) is a type of stringname=null# parameters_content - (optional) is a type of stringparameters_content=null# tags - (optional) is a type of map of stringtags={}
# template_content - (optional) is a type of stringtemplate_content=null# template_spec_version_id - (optional) is a type of stringtemplate_spec_version_id=nulltimeouts=[{
create =null
delete =null
read =null
update =null
}]
}
resource"azurerm_subscription_template_deployment""this" {
# debug_level - (optional) is a type of stringdebug_level=var.debug_level# location - (required) is a type of stringlocation=var.location# name - (required) is a type of stringname=var.name# parameters_content - (optional) is a type of stringparameters_content=var.parameters_content# tags - (optional) is a type of map of stringtags=var.tags# template_content - (optional) is a type of stringtemplate_content=var.template_content# template_spec_version_id - (optional) is a type of stringtemplate_spec_version_id=var.template_spec_version_iddynamic"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"]
}
}
}