Lifecycle and ARM template deployment

Is there a way to use LIfecycle/IgnoreChanges when using azurerm_resource_group_template_deployment? For example, I would like to ignore changes to one of the “properties” used in the inline “template_content”

 {
   "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
   "contentVersion": "1.0.0.0",
   "resources": [
      {
         "name": "X"
         "properties": {
            "timezoneId": "UTC",
            "next property": "A",
            "next property": "B",
            "next property": "etc"
          }
      },
   ]
}
1 Like