hashicorp / terraform-provider-azurerm

Terraform provider for Azure Resource Manager
https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs
Mozilla Public License 2.0
4.59k stars 4.63k forks source link

terraform validate Reports additional_login_params as Unsupported Argument for azurerm_linux_function_app and azurerm_windows_function_app #16472

Closed alexkoepke closed 2 years ago

alexkoepke commented 2 years ago

Is there an existing issue for this?

Community Note

Terraform Version

v1.1.9

AzureRM Provider Version

v3.2.0

Affected Resource(s)/Data Source(s)

azurerm_linux_function_app, azurerm_windows_function_app

Terraform Configuration Files

variable "map_var" {
  type = map(any)
  default = {
    "key1" = "value1"
    "key2" = "value2"
    "key3" = "value3"
  }
}

provider "azurerm" {
  features {}
}

resource "azurerm_resource_group" "example" {
  name     = "example-resources"
  location = "West Europe"
}

resource "azurerm_storage_account" "example" {
  name                     = "linuxfunctionappsa"
  resource_group_name      = azurerm_resource_group.example.name
  location                 = azurerm_resource_group.example.location
  account_tier             = "Standard"
  account_replication_type = "LRS"
}

resource "azurerm_service_plan" "example" {
  name                = "example-app-service-plan"
  resource_group_name = azurerm_resource_group.example.name
  location            = azurerm_resource_group.example.location
  os_type             = "Linux"
  sku_name            = "Y1"
}

resource "azurerm_linux_function_app" "example" {
  name                = "example-linux-function-app"
  resource_group_name = azurerm_resource_group.example.name
  location            = azurerm_resource_group.example.location

  storage_account_name = azurerm_storage_account.example.name
  service_plan_id      = azurerm_service_plan.example.id

  site_config {}

  auth_settings {
    enabled                 = "true"
    additional_login_params = var.map_var
  }
}

Debug Output/Panic Output

❯ terraform validate
2022-04-20T14:28:14.454-0400 [INFO]  Terraform version: 1.1.9
2022-04-20T14:28:14.454-0400 [INFO]  Go runtime version: go1.17.2
2022-04-20T14:28:14.454-0400 [INFO]  CLI args: []string{"terraform", "validate"}
2022-04-20T14:28:14.454-0400 [DEBUG] Attempting to open CLI config file: /Users/alexanderkoepke/.terraformrc
2022-04-20T14:28:14.454-0400 [DEBUG] File doesn't exist, but doesn't need to. Ignoring.
2022-04-20T14:28:14.454-0400 [DEBUG] ignoring non-existing provider search directory terraform.d/plugins
2022-04-20T14:28:14.454-0400 [DEBUG] ignoring non-existing provider search directory /Users/alexanderkoepke/.terraform.d/plugins
2022-04-20T14:28:14.454-0400 [DEBUG] ignoring non-existing provider search directory /Users/alexanderkoepke/Library/Application Support/io.terraform/plugins
2022-04-20T14:28:14.454-0400 [DEBUG] ignoring non-existing provider search directory /Library/Application Support/io.terraform/plugins
2022-04-20T14:28:14.455-0400 [INFO]  CLI command args: []string{"validate"}
2022-04-20T14:28:14.566-0400 [DEBUG] checking for provisioner in "."
2022-04-20T14:28:14.567-0400 [DEBUG] checking for provisioner in "/opt/homebrew/bin"
2022-04-20T14:28:14.567-0400 [DEBUG] Building and walking validate graph
2022-04-20T14:28:14.567-0400 [DEBUG] ProviderTransformer: "azurerm_resource_group.example" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/azurerm"]
2022-04-20T14:28:14.567-0400 [DEBUG] ProviderTransformer: "azurerm_storage_account.example" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/azurerm"]
2022-04-20T14:28:14.567-0400 [DEBUG] ProviderTransformer: "azurerm_service_plan.example" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/azurerm"]
2022-04-20T14:28:14.567-0400 [DEBUG] ProviderTransformer: "azurerm_linux_function_app.example" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/hashicorp/azurerm"]
2022-04-20T14:28:14.567-0400 [DEBUG] created provider logger: level=debug
2022-04-20T14:28:14.567-0400 [INFO]  provider: configuring client automatic mTLS
2022-04-20T14:28:14.574-0400 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/azurerm/3.2.0/darwin_arm64/terraform-provider-azurerm_v3.2.0_x5 args=[.terraform/providers/registry.terraform.io/hashicorp/azurerm/3.2.0/darwin_arm64/terraform-provider-azurerm_v3.2.0_x5]
2022-04-20T14:28:14.580-0400 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/azurerm/3.2.0/darwin_arm64/terraform-provider-azurerm_v3.2.0_x5 pid=92265
2022-04-20T14:28:14.580-0400 [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/hashicorp/azurerm/3.2.0/darwin_arm64/terraform-provider-azurerm_v3.2.0_x5
2022-04-20T14:28:14.596-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "AAD B2C"..: timestamp=2022-04-20T14:28:14.595-0400
2022-04-20T14:28:14.596-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "AAD B2C"..: timestamp=2022-04-20T14:28:14.596-0400
2022-04-20T14:28:14.596-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "API Management"..: timestamp=2022-04-20T14:28:14.596-0400
2022-04-20T14:28:14.596-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "API Management"..: timestamp=2022-04-20T14:28:14.596-0400
2022-04-20T14:28:14.596-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "App Configuration"..: timestamp=2022-04-20T14:28:14.596-0400
2022-04-20T14:28:14.596-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "App Configuration"..: timestamp=2022-04-20T14:28:14.596-0400
2022-04-20T14:28:14.596-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "AppService"..: timestamp=2022-04-20T14:28:14.596-0400
2022-04-20T14:28:14.596-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "AppService"..: timestamp=2022-04-20T14:28:14.596-0400
2022-04-20T14:28:14.597-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Batch"..: timestamp=2022-04-20T14:28:14.597-0400
2022-04-20T14:28:14.597-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Batch"..: timestamp=2022-04-20T14:28:14.597-0400
2022-04-20T14:28:14.597-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Bot"..: timestamp=2022-04-20T14:28:14.597-0400
2022-04-20T14:28:14.597-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Bot"..: timestamp=2022-04-20T14:28:14.597-0400
2022-04-20T14:28:14.597-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Consumption"..: timestamp=2022-04-20T14:28:14.597-0400
2022-04-20T14:28:14.597-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Consumption"..: timestamp=2022-04-20T14:28:14.597-0400
2022-04-20T14:28:14.597-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Container Services"..: timestamp=2022-04-20T14:28:14.597-0400
2022-04-20T14:28:14.597-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Container Services"..: timestamp=2022-04-20T14:28:14.597-0400
2022-04-20T14:28:14.597-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Cost Management"..: timestamp=2022-04-20T14:28:14.597-0400
2022-04-20T14:28:14.597-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Cost Management"..: timestamp=2022-04-20T14:28:14.597-0400
2022-04-20T14:28:14.597-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Disks"..: timestamp=2022-04-20T14:28:14.597-0400
2022-04-20T14:28:14.597-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Disks"..: timestamp=2022-04-20T14:28:14.597-0400
2022-04-20T14:28:14.597-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "EventHub"..: timestamp=2022-04-20T14:28:14.597-0400
2022-04-20T14:28:14.597-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "EventHub"..: timestamp=2022-04-20T14:28:14.597-0400
2022-04-20T14:28:14.598-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "KeyVault"..: timestamp=2022-04-20T14:28:14.598-0400
2022-04-20T14:28:14.598-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "KeyVault"..: timestamp=2022-04-20T14:28:14.598-0400
2022-04-20T14:28:14.598-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Load Balancer"..: timestamp=2022-04-20T14:28:14.598-0400
2022-04-20T14:28:14.598-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Load Balancer"..: timestamp=2022-04-20T14:28:14.598-0400
2022-04-20T14:28:14.598-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Load Test"..: timestamp=2022-04-20T14:28:14.598-0400
2022-04-20T14:28:14.598-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Load Test"..: timestamp=2022-04-20T14:28:14.598-0400
2022-04-20T14:28:14.598-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Microsoft SQL Server / Azure SQL"..: timestamp=2022-04-20T14:28:14.598-0400
2022-04-20T14:28:14.598-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Microsoft SQL Server / Azure SQL"..: timestamp=2022-04-20T14:28:14.598-0400
2022-04-20T14:28:14.598-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Policy"..: timestamp=2022-04-20T14:28:14.598-0400
2022-04-20T14:28:14.598-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Policy"..: timestamp=2022-04-20T14:28:14.598-0400
2022-04-20T14:28:14.598-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Resources"..: timestamp=2022-04-20T14:28:14.598-0400
2022-04-20T14:28:14.598-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Resources"..: timestamp=2022-04-20T14:28:14.598-0400
2022-04-20T14:28:14.598-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Sentinel"..: timestamp=2022-04-20T14:28:14.598-0400
2022-04-20T14:28:14.598-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Sentinel"..: timestamp=2022-04-20T14:28:14.598-0400
2022-04-20T14:28:14.598-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Service Fabric Managed Clusters"..: timestamp=2022-04-20T14:28:14.598-0400
2022-04-20T14:28:14.598-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Service Fabric Managed Clusters"..: timestamp=2022-04-20T14:28:14.598-0400
2022-04-20T14:28:14.598-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Stream Analytics"..: timestamp=2022-04-20T14:28:14.598-0400
2022-04-20T14:28:14.598-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Stream Analytics"..: timestamp=2022-04-20T14:28:14.598-0400
2022-04-20T14:28:14.598-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Web"..: timestamp=2022-04-20T14:28:14.598-0400
2022-04-20T14:28:14.598-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Web"..: timestamp=2022-04-20T14:28:14.598-0400
2022-04-20T14:28:14.598-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Advisor"..: timestamp=2022-04-20T14:28:14.598-0400
2022-04-20T14:28:14.598-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Advisor"..: timestamp=2022-04-20T14:28:14.598-0400
2022-04-20T14:28:14.598-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Analysis Services"..: timestamp=2022-04-20T14:28:14.598-0400
2022-04-20T14:28:14.598-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Analysis Services"..: timestamp=2022-04-20T14:28:14.598-0400
2022-04-20T14:28:14.598-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "API Management"..: timestamp=2022-04-20T14:28:14.598-0400
2022-04-20T14:28:14.598-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "API Management"..: timestamp=2022-04-20T14:28:14.598-0400
2022-04-20T14:28:14.599-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "App Configuration"..: timestamp=2022-04-20T14:28:14.599-0400
2022-04-20T14:28:14.599-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "App Configuration"..: timestamp=2022-04-20T14:28:14.599-0400
2022-04-20T14:28:14.599-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Spring Cloud"..: timestamp=2022-04-20T14:28:14.599-0400
2022-04-20T14:28:14.599-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Spring Cloud"..: timestamp=2022-04-20T14:28:14.599-0400
2022-04-20T14:28:14.599-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Application Insights"..: timestamp=2022-04-20T14:28:14.599-0400
2022-04-20T14:28:14.599-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Application Insights"..: timestamp=2022-04-20T14:28:14.599-0400
2022-04-20T14:28:14.599-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Attestation"..: timestamp=2022-04-20T14:28:14.599-0400
2022-04-20T14:28:14.599-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Attestation"..: timestamp=2022-04-20T14:28:14.599-0400
2022-04-20T14:28:14.599-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Authorization"..: timestamp=2022-04-20T14:28:14.599-0400
2022-04-20T14:28:14.599-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Authorization"..: timestamp=2022-04-20T14:28:14.599-0400
2022-04-20T14:28:14.599-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Automation"..: timestamp=2022-04-20T14:28:14.599-0400
2022-04-20T14:28:14.599-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Automation"..: timestamp=2022-04-20T14:28:14.599-0400
2022-04-20T14:28:14.600-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Azure Stack HCI"..: timestamp=2022-04-20T14:28:14.600-0400
2022-04-20T14:28:14.600-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Azure Stack HCI"..: timestamp=2022-04-20T14:28:14.600-0400
2022-04-20T14:28:14.600-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Batch"..: timestamp=2022-04-20T14:28:14.600-0400
2022-04-20T14:28:14.600-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Batch"..: timestamp=2022-04-20T14:28:14.600-0400
2022-04-20T14:28:14.600-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Billing"..: timestamp=2022-04-20T14:28:14.600-0400
2022-04-20T14:28:14.600-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Billing"..: timestamp=2022-04-20T14:28:14.600-0400
2022-04-20T14:28:14.600-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Blueprints"..: timestamp=2022-04-20T14:28:14.600-0400
2022-04-20T14:28:14.600-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Blueprints"..: timestamp=2022-04-20T14:28:14.600-0400
2022-04-20T14:28:14.600-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Bot"..: timestamp=2022-04-20T14:28:14.600-0400
2022-04-20T14:28:14.600-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Bot"..: timestamp=2022-04-20T14:28:14.600-0400
2022-04-20T14:28:14.600-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "CDN"..: timestamp=2022-04-20T14:28:14.600-0400
2022-04-20T14:28:14.600-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "CDN"..: timestamp=2022-04-20T14:28:14.600-0400
2022-04-20T14:28:14.601-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Cognitive Services"..: timestamp=2022-04-20T14:28:14.601-0400
2022-04-20T14:28:14.601-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Cognitive Services"..: timestamp=2022-04-20T14:28:14.601-0400
2022-04-20T14:28:14.601-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Communication"..: timestamp=2022-04-20T14:28:14.601-0400
2022-04-20T14:28:14.601-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Communication"..: timestamp=2022-04-20T14:28:14.601-0400
2022-04-20T14:28:14.601-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Compute"..: timestamp=2022-04-20T14:28:14.601-0400
2022-04-20T14:28:14.601-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Compute"..: timestamp=2022-04-20T14:28:14.601-0400
2022-04-20T14:28:14.602-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Connections"..: timestamp=2022-04-20T14:28:14.601-0400
2022-04-20T14:28:14.602-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Connections"..: timestamp=2022-04-20T14:28:14.601-0400
2022-04-20T14:28:14.602-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Container Services"..: timestamp=2022-04-20T14:28:14.601-0400
2022-04-20T14:28:14.602-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Container Services"..: timestamp=2022-04-20T14:28:14.602-0400
2022-04-20T14:28:14.602-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Consumption"..: timestamp=2022-04-20T14:28:14.602-0400
2022-04-20T14:28:14.602-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Consumption"..: timestamp=2022-04-20T14:28:14.602-0400
2022-04-20T14:28:14.602-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "CosmosDB"..: timestamp=2022-04-20T14:28:14.602-0400
2022-04-20T14:28:14.602-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "CosmosDB"..: timestamp=2022-04-20T14:28:14.602-0400
2022-04-20T14:28:14.602-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Custom Providers"..: timestamp=2022-04-20T14:28:14.602-0400
2022-04-20T14:28:14.602-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Custom Providers"..: timestamp=2022-04-20T14:28:14.602-0400
2022-04-20T14:28:14.602-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "DataBricks"..: timestamp=2022-04-20T14:28:14.602-0400
2022-04-20T14:28:14.602-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "DataBricks"..: timestamp=2022-04-20T14:28:14.602-0400
2022-04-20T14:28:14.602-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Data Factory"..: timestamp=2022-04-20T14:28:14.602-0400
2022-04-20T14:28:14.602-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Data Factory"..: timestamp=2022-04-20T14:28:14.602-0400
2022-04-20T14:28:14.603-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Database Migration"..: timestamp=2022-04-20T14:28:14.603-0400
2022-04-20T14:28:14.603-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Database Migration"..: timestamp=2022-04-20T14:28:14.603-0400
2022-04-20T14:28:14.603-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Databox Edge"..: timestamp=2022-04-20T14:28:14.603-0400
2022-04-20T14:28:14.603-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Databox Edge"..: timestamp=2022-04-20T14:28:14.603-0400
2022-04-20T14:28:14.603-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "DataProtection"..: timestamp=2022-04-20T14:28:14.603-0400
2022-04-20T14:28:14.603-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "DataProtection"..: timestamp=2022-04-20T14:28:14.603-0400
2022-04-20T14:28:14.603-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Data Share"..: timestamp=2022-04-20T14:28:14.603-0400
2022-04-20T14:28:14.603-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Data Share"..: timestamp=2022-04-20T14:28:14.603-0400
2022-04-20T14:28:14.604-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Desktop Virtualization"..: timestamp=2022-04-20T14:28:14.604-0400
2022-04-20T14:28:14.604-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Desktop Virtualization"..: timestamp=2022-04-20T14:28:14.604-0400
2022-04-20T14:28:14.604-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Dev Test"..: timestamp=2022-04-20T14:28:14.604-0400
2022-04-20T14:28:14.604-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Dev Test"..: timestamp=2022-04-20T14:28:14.604-0400
2022-04-20T14:28:14.604-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Digital Twins"..: timestamp=2022-04-20T14:28:14.604-0400
2022-04-20T14:28:14.604-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Digital Twins"..: timestamp=2022-04-20T14:28:14.604-0400
2022-04-20T14:28:14.604-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "DNS"..: timestamp=2022-04-20T14:28:14.604-0400
2022-04-20T14:28:14.604-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "DNS"..: timestamp=2022-04-20T14:28:14.604-0400
2022-04-20T14:28:14.604-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "DomainServices"..: timestamp=2022-04-20T14:28:14.604-0400
2022-04-20T14:28:14.604-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "DomainServices"..: timestamp=2022-04-20T14:28:14.604-0400
2022-04-20T14:28:14.604-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "EventGrid"..: timestamp=2022-04-20T14:28:14.604-0400
2022-04-20T14:28:14.605-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "EventGrid"..: timestamp=2022-04-20T14:28:14.605-0400
2022-04-20T14:28:14.605-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "EventHub"..: timestamp=2022-04-20T14:28:14.605-0400
2022-04-20T14:28:14.606-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "EventHub"..: timestamp=2022-04-20T14:28:14.605-0400
2022-04-20T14:28:14.606-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Firewall"..: timestamp=2022-04-20T14:28:14.606-0400
2022-04-20T14:28:14.606-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Firewall"..: timestamp=2022-04-20T14:28:14.606-0400
2022-04-20T14:28:14.606-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "FrontDoor"..: timestamp=2022-04-20T14:28:14.606-0400
2022-04-20T14:28:14.606-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "FrontDoor"..: timestamp=2022-04-20T14:28:14.606-0400
2022-04-20T14:28:14.606-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "HPC Cache"..: timestamp=2022-04-20T14:28:14.606-0400
2022-04-20T14:28:14.606-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "HPC Cache"..: timestamp=2022-04-20T14:28:14.606-0400
2022-04-20T14:28:14.606-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Hardware Security Module"..: timestamp=2022-04-20T14:28:14.606-0400
2022-04-20T14:28:14.606-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Hardware Security Module"..: timestamp=2022-04-20T14:28:14.606-0400
2022-04-20T14:28:14.606-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "HDInsight"..: timestamp=2022-04-20T14:28:14.606-0400
2022-04-20T14:28:14.606-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "HDInsight"..: timestamp=2022-04-20T14:28:14.606-0400
2022-04-20T14:28:14.606-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Health Care"..: timestamp=2022-04-20T14:28:14.606-0400
2022-04-20T14:28:14.606-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Health Care"..: timestamp=2022-04-20T14:28:14.606-0400
2022-04-20T14:28:14.606-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "IoT Hub"..: timestamp=2022-04-20T14:28:14.606-0400
2022-04-20T14:28:14.606-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "IoT Hub"..: timestamp=2022-04-20T14:28:14.606-0400
2022-04-20T14:28:14.607-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "IoT Central"..: timestamp=2022-04-20T14:28:14.607-0400
2022-04-20T14:28:14.607-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "IoT Central"..: timestamp=2022-04-20T14:28:14.607-0400
2022-04-20T14:28:14.607-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "KeyVault"..: timestamp=2022-04-20T14:28:14.607-0400
2022-04-20T14:28:14.607-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "KeyVault"..: timestamp=2022-04-20T14:28:14.607-0400
2022-04-20T14:28:14.607-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Kusto"..: timestamp=2022-04-20T14:28:14.607-0400
2022-04-20T14:28:14.607-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Kusto"..: timestamp=2022-04-20T14:28:14.607-0400
2022-04-20T14:28:14.607-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Legacy"..: timestamp=2022-04-20T14:28:14.607-0400
2022-04-20T14:28:14.607-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Legacy"..: timestamp=2022-04-20T14:28:14.607-0400
2022-04-20T14:28:14.607-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Load Balancer"..: timestamp=2022-04-20T14:28:14.607-0400
2022-04-20T14:28:14.607-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Load Balancer"..: timestamp=2022-04-20T14:28:14.607-0400
2022-04-20T14:28:14.607-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Log Analytics"..: timestamp=2022-04-20T14:28:14.607-0400
2022-04-20T14:28:14.607-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Log Analytics"..: timestamp=2022-04-20T14:28:14.607-0400
2022-04-20T14:28:14.607-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Logic"..: timestamp=2022-04-20T14:28:14.607-0400
2022-04-20T14:28:14.607-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Logic"..: timestamp=2022-04-20T14:28:14.607-0400
2022-04-20T14:28:14.609-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Logz"..: timestamp=2022-04-20T14:28:14.608-0400
2022-04-20T14:28:14.609-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Logz"..: timestamp=2022-04-20T14:28:14.608-0400
2022-04-20T14:28:14.609-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Machine Learning"..: timestamp=2022-04-20T14:28:14.608-0400
2022-04-20T14:28:14.609-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Machine Learning"..: timestamp=2022-04-20T14:28:14.608-0400
2022-04-20T14:28:14.609-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Maintenance"..: timestamp=2022-04-20T14:28:14.608-0400
2022-04-20T14:28:14.609-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Maintenance"..: timestamp=2022-04-20T14:28:14.608-0400
2022-04-20T14:28:14.609-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Managed Applications"..: timestamp=2022-04-20T14:28:14.608-0400
2022-04-20T14:28:14.609-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Managed Applications"..: timestamp=2022-04-20T14:28:14.608-0400
2022-04-20T14:28:14.609-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Lighthouse"..: timestamp=2022-04-20T14:28:14.608-0400
2022-04-20T14:28:14.609-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Lighthouse"..: timestamp=2022-04-20T14:28:14.608-0400
2022-04-20T14:28:14.609-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Management Group"..: timestamp=2022-04-20T14:28:14.608-0400
2022-04-20T14:28:14.609-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Management Group"..: timestamp=2022-04-20T14:28:14.608-0400
2022-04-20T14:28:14.609-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Maps"..: timestamp=2022-04-20T14:28:14.608-0400
2022-04-20T14:28:14.609-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Maps"..: timestamp=2022-04-20T14:28:14.608-0400
2022-04-20T14:28:14.609-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "MariaDB"..: timestamp=2022-04-20T14:28:14.608-0400
2022-04-20T14:28:14.609-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "MariaDB"..: timestamp=2022-04-20T14:28:14.608-0400
2022-04-20T14:28:14.609-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Media"..: timestamp=2022-04-20T14:28:14.608-0400
2022-04-20T14:28:14.609-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Media"..: timestamp=2022-04-20T14:28:14.608-0400
2022-04-20T14:28:14.610-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Mixed Reality"..: timestamp=2022-04-20T14:28:14.610-0400
2022-04-20T14:28:14.610-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Mixed Reality"..: timestamp=2022-04-20T14:28:14.610-0400
2022-04-20T14:28:14.610-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Monitor"..: timestamp=2022-04-20T14:28:14.610-0400
2022-04-20T14:28:14.610-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Monitor"..: timestamp=2022-04-20T14:28:14.610-0400
2022-04-20T14:28:14.610-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Managed Service Identities"..: timestamp=2022-04-20T14:28:14.610-0400
2022-04-20T14:28:14.610-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Managed Service Identities"..: timestamp=2022-04-20T14:28:14.610-0400
2022-04-20T14:28:14.610-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Microsoft SQL Server / Azure SQL"..: timestamp=2022-04-20T14:28:14.610-0400
2022-04-20T14:28:14.610-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Microsoft SQL Server / Azure SQL"..: timestamp=2022-04-20T14:28:14.610-0400
2022-04-20T14:28:14.611-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "MySQL"..: timestamp=2022-04-20T14:28:14.611-0400
2022-04-20T14:28:14.611-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "MySQL"..: timestamp=2022-04-20T14:28:14.611-0400
2022-04-20T14:28:14.611-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "NetApp"..: timestamp=2022-04-20T14:28:14.611-0400
2022-04-20T14:28:14.611-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "NetApp"..: timestamp=2022-04-20T14:28:14.611-0400
2022-04-20T14:28:14.611-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Network"..: timestamp=2022-04-20T14:28:14.611-0400
2022-04-20T14:28:14.611-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Network"..: timestamp=2022-04-20T14:28:14.611-0400
2022-04-20T14:28:14.611-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Notification Hub"..: timestamp=2022-04-20T14:28:14.611-0400
2022-04-20T14:28:14.611-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Notification Hub"..: timestamp=2022-04-20T14:28:14.611-0400
2022-04-20T14:28:14.611-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Policy"..: timestamp=2022-04-20T14:28:14.611-0400
2022-04-20T14:28:14.611-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Policy"..: timestamp=2022-04-20T14:28:14.611-0400
2022-04-20T14:28:14.611-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Portal"..: timestamp=2022-04-20T14:28:14.611-0400
2022-04-20T14:28:14.611-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Portal"..: timestamp=2022-04-20T14:28:14.611-0400
2022-04-20T14:28:14.611-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "PostgreSQL"..: timestamp=2022-04-20T14:28:14.611-0400
2022-04-20T14:28:14.611-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "PostgreSQL"..: timestamp=2022-04-20T14:28:14.611-0400
2022-04-20T14:28:14.611-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "PowerBI"..: timestamp=2022-04-20T14:28:14.611-0400
2022-04-20T14:28:14.611-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "PowerBI"..: timestamp=2022-04-20T14:28:14.611-0400
2022-04-20T14:28:14.611-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Private DNS"..: timestamp=2022-04-20T14:28:14.611-0400
2022-04-20T14:28:14.611-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Private DNS"..: timestamp=2022-04-20T14:28:14.611-0400
2022-04-20T14:28:14.611-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Purview"..: timestamp=2022-04-20T14:28:14.611-0400
2022-04-20T14:28:14.611-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Purview"..: timestamp=2022-04-20T14:28:14.611-0400
2022-04-20T14:28:14.611-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Recovery Services"..: timestamp=2022-04-20T14:28:14.611-0400
2022-04-20T14:28:14.611-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Recovery Services"..: timestamp=2022-04-20T14:28:14.611-0400
2022-04-20T14:28:14.612-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Redis"..: timestamp=2022-04-20T14:28:14.611-0400
2022-04-20T14:28:14.612-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Redis"..: timestamp=2022-04-20T14:28:14.611-0400
2022-04-20T14:28:14.612-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Redis Enterprise"..: timestamp=2022-04-20T14:28:14.612-0400
2022-04-20T14:28:14.612-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Redis Enterprise"..: timestamp=2022-04-20T14:28:14.612-0400
2022-04-20T14:28:14.612-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Relay"..: timestamp=2022-04-20T14:28:14.612-0400
2022-04-20T14:28:14.612-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Relay"..: timestamp=2022-04-20T14:28:14.612-0400
2022-04-20T14:28:14.613-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Resources"..: timestamp=2022-04-20T14:28:14.612-0400
2022-04-20T14:28:14.613-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Resources"..: timestamp=2022-04-20T14:28:14.612-0400
2022-04-20T14:28:14.613-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Search"..: timestamp=2022-04-20T14:28:14.612-0400
2022-04-20T14:28:14.613-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Search"..: timestamp=2022-04-20T14:28:14.612-0400
2022-04-20T14:28:14.613-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Security Center"..: timestamp=2022-04-20T14:28:14.612-0400
2022-04-20T14:28:14.613-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Security Center"..: timestamp=2022-04-20T14:28:14.612-0400
2022-04-20T14:28:14.613-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Sentinel"..: timestamp=2022-04-20T14:28:14.612-0400
2022-04-20T14:28:14.613-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Sentinel"..: timestamp=2022-04-20T14:28:14.612-0400
2022-04-20T14:28:14.613-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "ServiceBus"..: timestamp=2022-04-20T14:28:14.612-0400
2022-04-20T14:28:14.614-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "ServiceBus"..: timestamp=2022-04-20T14:28:14.612-0400
2022-04-20T14:28:14.614-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Service Fabric"..: timestamp=2022-04-20T14:28:14.612-0400
2022-04-20T14:28:14.614-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Service Fabric"..: timestamp=2022-04-20T14:28:14.612-0400
2022-04-20T14:28:14.614-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "SignalR"..: timestamp=2022-04-20T14:28:14.612-0400
2022-04-20T14:28:14.614-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "SignalR"..: timestamp=2022-04-20T14:28:14.612-0400
2022-04-20T14:28:14.614-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "SQL"..: timestamp=2022-04-20T14:28:14.612-0400
2022-04-20T14:28:14.614-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "SQL"..: timestamp=2022-04-20T14:28:14.612-0400
2022-04-20T14:28:14.614-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Storage"..: timestamp=2022-04-20T14:28:14.612-0400
2022-04-20T14:28:14.614-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Storage"..: timestamp=2022-04-20T14:28:14.612-0400
2022-04-20T14:28:14.614-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Stream Analytics"..: timestamp=2022-04-20T14:28:14.613-0400
2022-04-20T14:28:14.614-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Stream Analytics"..: timestamp=2022-04-20T14:28:14.613-0400
2022-04-20T14:28:14.614-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Subscription"..: timestamp=2022-04-20T14:28:14.613-0400
2022-04-20T14:28:14.614-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Subscription"..: timestamp=2022-04-20T14:28:14.613-0400
2022-04-20T14:28:14.614-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Synapse"..: timestamp=2022-04-20T14:28:14.613-0400
2022-04-20T14:28:14.614-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Synapse"..: timestamp=2022-04-20T14:28:14.613-0400
2022-04-20T14:28:14.614-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Time Series Insights"..: timestamp=2022-04-20T14:28:14.613-0400
2022-04-20T14:28:14.614-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Time Series Insights"..: timestamp=2022-04-20T14:28:14.613-0400
2022-04-20T14:28:14.614-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Traffic Manager"..: timestamp=2022-04-20T14:28:14.613-0400
2022-04-20T14:28:14.614-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Traffic Manager"..: timestamp=2022-04-20T14:28:14.613-0400
2022-04-20T14:28:14.614-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Video Analyzer"..: timestamp=2022-04-20T14:28:14.613-0400
2022-04-20T14:28:14.614-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Video Analyzer"..: timestamp=2022-04-20T14:28:14.613-0400
2022-04-20T14:28:14.614-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "VMware"..: timestamp=2022-04-20T14:28:14.613-0400
2022-04-20T14:28:14.614-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "VMware"..: timestamp=2022-04-20T14:28:14.613-0400
2022-04-20T14:28:14.614-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Web"..: timestamp=2022-04-20T14:28:14.613-0400
2022-04-20T14:28:14.614-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Web"..: timestamp=2022-04-20T14:28:14.613-0400
2022-04-20T14:28:14.614-0400 [INFO]  provider.terraform-provider-azurerm_v3.2.0_x5: configuring server automatic mTLS: timestamp=2022-04-20T14:28:14.614-0400
2022-04-20T14:28:14.622-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: plugin address: address=/var/folders/fc/l8yh50qj41zc3njq8r_lm2jh0000gp/T/plugin2640941566 network=unix timestamp=2022-04-20T14:28:14.622-0400
2022-04-20T14:28:14.622-0400 [DEBUG] provider: using plugin: version=5
2022-04-20T14:28:14.689-0400 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = transport is closing"
2022-04-20T14:28:14.690-0400 [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/hashicorp/azurerm/3.2.0/darwin_arm64/terraform-provider-azurerm_v3.2.0_x5 pid=92265
2022-04-20T14:28:14.690-0400 [DEBUG] provider: plugin exited
2022-04-20T14:28:14.690-0400 [DEBUG] ReferenceTransformer: "var.map_var" references: []
2022-04-20T14:28:14.690-0400 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/hashicorp/azurerm\"]" references: []
2022-04-20T14:28:14.690-0400 [DEBUG] ReferenceTransformer: "azurerm_resource_group.example" references: []
2022-04-20T14:28:14.690-0400 [DEBUG] ReferenceTransformer: "azurerm_storage_account.example" references: [azurerm_resource_group.example azurerm_resource_group.example]
2022-04-20T14:28:14.690-0400 [DEBUG] ReferenceTransformer: "azurerm_service_plan.example" references: [azurerm_resource_group.example azurerm_resource_group.example]
2022-04-20T14:28:14.690-0400 [DEBUG] ReferenceTransformer: "azurerm_linux_function_app.example" references: [azurerm_storage_account.example azurerm_resource_group.example azurerm_service_plan.example azurerm_resource_group.example]
2022-04-20T14:28:14.691-0400 [DEBUG] Starting graph walk: walkValidate
2022-04-20T14:28:14.691-0400 [DEBUG] created provider logger: level=debug
2022-04-20T14:28:14.691-0400 [INFO]  provider: configuring client automatic mTLS
2022-04-20T14:28:14.698-0400 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/azurerm/3.2.0/darwin_arm64/terraform-provider-azurerm_v3.2.0_x5 args=[.terraform/providers/registry.terraform.io/hashicorp/azurerm/3.2.0/darwin_arm64/terraform-provider-azurerm_v3.2.0_x5]
2022-04-20T14:28:14.704-0400 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/azurerm/3.2.0/darwin_arm64/terraform-provider-azurerm_v3.2.0_x5 pid=92266
2022-04-20T14:28:14.704-0400 [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/hashicorp/azurerm/3.2.0/darwin_arm64/terraform-provider-azurerm_v3.2.0_x5
2022-04-20T14:28:14.716-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "AAD B2C"..: timestamp=2022-04-20T14:28:14.716-0400
2022-04-20T14:28:14.716-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "AAD B2C"..: timestamp=2022-04-20T14:28:14.716-0400
2022-04-20T14:28:14.716-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "API Management"..: timestamp=2022-04-20T14:28:14.716-0400
2022-04-20T14:28:14.716-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "API Management"..: timestamp=2022-04-20T14:28:14.716-0400
2022-04-20T14:28:14.716-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "App Configuration"..: timestamp=2022-04-20T14:28:14.716-0400
2022-04-20T14:28:14.716-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "App Configuration"..: timestamp=2022-04-20T14:28:14.716-0400
2022-04-20T14:28:14.716-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "AppService"..: timestamp=2022-04-20T14:28:14.716-0400
2022-04-20T14:28:14.717-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "AppService"..: timestamp=2022-04-20T14:28:14.717-0400
2022-04-20T14:28:14.718-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Batch"..: timestamp=2022-04-20T14:28:14.718-0400
2022-04-20T14:28:14.718-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Batch"..: timestamp=2022-04-20T14:28:14.718-0400
2022-04-20T14:28:14.718-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Bot"..: timestamp=2022-04-20T14:28:14.718-0400
2022-04-20T14:28:14.718-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Bot"..: timestamp=2022-04-20T14:28:14.718-0400
2022-04-20T14:28:14.718-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Consumption"..: timestamp=2022-04-20T14:28:14.718-0400
2022-04-20T14:28:14.718-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Consumption"..: timestamp=2022-04-20T14:28:14.718-0400
2022-04-20T14:28:14.718-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Container Services"..: timestamp=2022-04-20T14:28:14.718-0400
2022-04-20T14:28:14.718-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Container Services"..: timestamp=2022-04-20T14:28:14.718-0400
2022-04-20T14:28:14.718-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Cost Management"..: timestamp=2022-04-20T14:28:14.718-0400
2022-04-20T14:28:14.718-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Cost Management"..: timestamp=2022-04-20T14:28:14.718-0400
2022-04-20T14:28:14.718-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Disks"..: timestamp=2022-04-20T14:28:14.718-0400
2022-04-20T14:28:14.718-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Disks"..: timestamp=2022-04-20T14:28:14.718-0400
2022-04-20T14:28:14.718-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "EventHub"..: timestamp=2022-04-20T14:28:14.718-0400
2022-04-20T14:28:14.718-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "EventHub"..: timestamp=2022-04-20T14:28:14.718-0400
2022-04-20T14:28:14.718-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "KeyVault"..: timestamp=2022-04-20T14:28:14.718-0400
2022-04-20T14:28:14.718-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "KeyVault"..: timestamp=2022-04-20T14:28:14.718-0400
2022-04-20T14:28:14.718-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Load Balancer"..: timestamp=2022-04-20T14:28:14.718-0400
2022-04-20T14:28:14.718-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Load Balancer"..: timestamp=2022-04-20T14:28:14.718-0400
2022-04-20T14:28:14.718-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Load Test"..: timestamp=2022-04-20T14:28:14.718-0400
2022-04-20T14:28:14.718-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Load Test"..: timestamp=2022-04-20T14:28:14.718-0400
2022-04-20T14:28:14.718-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Microsoft SQL Server / Azure SQL"..: timestamp=2022-04-20T14:28:14.718-0400
2022-04-20T14:28:14.718-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Microsoft SQL Server / Azure SQL"..: timestamp=2022-04-20T14:28:14.718-0400
2022-04-20T14:28:14.719-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Policy"..: timestamp=2022-04-20T14:28:14.719-0400
2022-04-20T14:28:14.719-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Policy"..: timestamp=2022-04-20T14:28:14.719-0400
2022-04-20T14:28:14.719-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Resources"..: timestamp=2022-04-20T14:28:14.719-0400
2022-04-20T14:28:14.719-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Resources"..: timestamp=2022-04-20T14:28:14.719-0400
2022-04-20T14:28:14.719-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Sentinel"..: timestamp=2022-04-20T14:28:14.719-0400
2022-04-20T14:28:14.719-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Sentinel"..: timestamp=2022-04-20T14:28:14.719-0400
2022-04-20T14:28:14.719-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Service Fabric Managed Clusters"..: timestamp=2022-04-20T14:28:14.719-0400
2022-04-20T14:28:14.719-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Service Fabric Managed Clusters"..: timestamp=2022-04-20T14:28:14.719-0400
2022-04-20T14:28:14.719-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Stream Analytics"..: timestamp=2022-04-20T14:28:14.719-0400
2022-04-20T14:28:14.719-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Stream Analytics"..: timestamp=2022-04-20T14:28:14.719-0400
2022-04-20T14:28:14.719-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Web"..: timestamp=2022-04-20T14:28:14.719-0400
2022-04-20T14:28:14.719-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Web"..: timestamp=2022-04-20T14:28:14.719-0400
2022-04-20T14:28:14.719-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Advisor"..: timestamp=2022-04-20T14:28:14.719-0400
2022-04-20T14:28:14.719-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Advisor"..: timestamp=2022-04-20T14:28:14.719-0400
2022-04-20T14:28:14.719-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Analysis Services"..: timestamp=2022-04-20T14:28:14.719-0400
2022-04-20T14:28:14.719-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Analysis Services"..: timestamp=2022-04-20T14:28:14.719-0400
2022-04-20T14:28:14.719-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "API Management"..: timestamp=2022-04-20T14:28:14.719-0400
2022-04-20T14:28:14.719-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "API Management"..: timestamp=2022-04-20T14:28:14.719-0400
2022-04-20T14:28:14.719-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "App Configuration"..: timestamp=2022-04-20T14:28:14.719-0400
2022-04-20T14:28:14.719-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "App Configuration"..: timestamp=2022-04-20T14:28:14.719-0400
2022-04-20T14:28:14.719-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Spring Cloud"..: timestamp=2022-04-20T14:28:14.719-0400
2022-04-20T14:28:14.719-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Spring Cloud"..: timestamp=2022-04-20T14:28:14.719-0400
2022-04-20T14:28:14.719-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Application Insights"..: timestamp=2022-04-20T14:28:14.719-0400
2022-04-20T14:28:14.719-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Application Insights"..: timestamp=2022-04-20T14:28:14.719-0400
2022-04-20T14:28:14.719-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Attestation"..: timestamp=2022-04-20T14:28:14.719-0400
2022-04-20T14:28:14.719-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Attestation"..: timestamp=2022-04-20T14:28:14.719-0400
2022-04-20T14:28:14.719-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Authorization"..: timestamp=2022-04-20T14:28:14.719-0400
2022-04-20T14:28:14.719-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Authorization"..: timestamp=2022-04-20T14:28:14.719-0400
2022-04-20T14:28:14.719-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Automation"..: timestamp=2022-04-20T14:28:14.719-0400
2022-04-20T14:28:14.720-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Automation"..: timestamp=2022-04-20T14:28:14.720-0400
2022-04-20T14:28:14.720-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Azure Stack HCI"..: timestamp=2022-04-20T14:28:14.720-0400
2022-04-20T14:28:14.720-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Azure Stack HCI"..: timestamp=2022-04-20T14:28:14.720-0400
2022-04-20T14:28:14.720-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Batch"..: timestamp=2022-04-20T14:28:14.720-0400
2022-04-20T14:28:14.720-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Batch"..: timestamp=2022-04-20T14:28:14.720-0400
2022-04-20T14:28:14.720-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Billing"..: timestamp=2022-04-20T14:28:14.720-0400
2022-04-20T14:28:14.720-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Billing"..: timestamp=2022-04-20T14:28:14.720-0400
2022-04-20T14:28:14.720-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Blueprints"..: timestamp=2022-04-20T14:28:14.720-0400
2022-04-20T14:28:14.720-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Blueprints"..: timestamp=2022-04-20T14:28:14.720-0400
2022-04-20T14:28:14.720-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Bot"..: timestamp=2022-04-20T14:28:14.720-0400
2022-04-20T14:28:14.720-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Bot"..: timestamp=2022-04-20T14:28:14.720-0400
2022-04-20T14:28:14.720-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "CDN"..: timestamp=2022-04-20T14:28:14.720-0400
2022-04-20T14:28:14.720-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "CDN"..: timestamp=2022-04-20T14:28:14.720-0400
2022-04-20T14:28:14.721-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Cognitive Services"..: timestamp=2022-04-20T14:28:14.721-0400
2022-04-20T14:28:14.721-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Cognitive Services"..: timestamp=2022-04-20T14:28:14.721-0400
2022-04-20T14:28:14.721-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Communication"..: timestamp=2022-04-20T14:28:14.721-0400
2022-04-20T14:28:14.721-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Communication"..: timestamp=2022-04-20T14:28:14.721-0400
2022-04-20T14:28:14.721-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Compute"..: timestamp=2022-04-20T14:28:14.721-0400
2022-04-20T14:28:14.721-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Compute"..: timestamp=2022-04-20T14:28:14.721-0400
2022-04-20T14:28:14.722-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Connections"..: timestamp=2022-04-20T14:28:14.722-0400
2022-04-20T14:28:14.722-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Connections"..: timestamp=2022-04-20T14:28:14.722-0400
2022-04-20T14:28:14.722-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Container Services"..: timestamp=2022-04-20T14:28:14.722-0400
2022-04-20T14:28:14.722-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Container Services"..: timestamp=2022-04-20T14:28:14.722-0400
2022-04-20T14:28:14.723-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Consumption"..: timestamp=2022-04-20T14:28:14.723-0400
2022-04-20T14:28:14.723-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Consumption"..: timestamp=2022-04-20T14:28:14.723-0400
2022-04-20T14:28:14.723-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "CosmosDB"..: timestamp=2022-04-20T14:28:14.723-0400
2022-04-20T14:28:14.723-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "CosmosDB"..: timestamp=2022-04-20T14:28:14.723-0400
2022-04-20T14:28:14.723-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Custom Providers"..: timestamp=2022-04-20T14:28:14.723-0400
2022-04-20T14:28:14.723-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Custom Providers"..: timestamp=2022-04-20T14:28:14.723-0400
2022-04-20T14:28:14.723-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "DataBricks"..: timestamp=2022-04-20T14:28:14.723-0400
2022-04-20T14:28:14.723-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "DataBricks"..: timestamp=2022-04-20T14:28:14.723-0400
2022-04-20T14:28:14.723-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Data Factory"..: timestamp=2022-04-20T14:28:14.723-0400
2022-04-20T14:28:14.723-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Data Factory"..: timestamp=2022-04-20T14:28:14.723-0400
2022-04-20T14:28:14.723-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Database Migration"..: timestamp=2022-04-20T14:28:14.723-0400
2022-04-20T14:28:14.723-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Database Migration"..: timestamp=2022-04-20T14:28:14.723-0400
2022-04-20T14:28:14.723-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Databox Edge"..: timestamp=2022-04-20T14:28:14.723-0400
2022-04-20T14:28:14.723-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Databox Edge"..: timestamp=2022-04-20T14:28:14.723-0400
2022-04-20T14:28:14.723-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "DataProtection"..: timestamp=2022-04-20T14:28:14.723-0400
2022-04-20T14:28:14.723-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "DataProtection"..: timestamp=2022-04-20T14:28:14.723-0400
2022-04-20T14:28:14.724-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Data Share"..: timestamp=2022-04-20T14:28:14.724-0400
2022-04-20T14:28:14.724-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Data Share"..: timestamp=2022-04-20T14:28:14.724-0400
2022-04-20T14:28:14.724-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Desktop Virtualization"..: timestamp=2022-04-20T14:28:14.724-0400
2022-04-20T14:28:14.724-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Desktop Virtualization"..: timestamp=2022-04-20T14:28:14.724-0400
2022-04-20T14:28:14.725-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Dev Test"..: timestamp=2022-04-20T14:28:14.725-0400
2022-04-20T14:28:14.725-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Dev Test"..: timestamp=2022-04-20T14:28:14.725-0400
2022-04-20T14:28:14.725-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Digital Twins"..: timestamp=2022-04-20T14:28:14.725-0400
2022-04-20T14:28:14.725-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Digital Twins"..: timestamp=2022-04-20T14:28:14.725-0400
2022-04-20T14:28:14.725-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "DNS"..: timestamp=2022-04-20T14:28:14.725-0400
2022-04-20T14:28:14.725-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "DNS"..: timestamp=2022-04-20T14:28:14.725-0400
2022-04-20T14:28:14.725-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "DomainServices"..: timestamp=2022-04-20T14:28:14.725-0400
2022-04-20T14:28:14.725-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "DomainServices"..: timestamp=2022-04-20T14:28:14.725-0400
2022-04-20T14:28:14.725-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "EventGrid"..: timestamp=2022-04-20T14:28:14.725-0400
2022-04-20T14:28:14.725-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "EventGrid"..: timestamp=2022-04-20T14:28:14.725-0400
2022-04-20T14:28:14.726-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "EventHub"..: timestamp=2022-04-20T14:28:14.726-0400
2022-04-20T14:28:14.726-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "EventHub"..: timestamp=2022-04-20T14:28:14.726-0400
2022-04-20T14:28:14.726-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Firewall"..: timestamp=2022-04-20T14:28:14.726-0400
2022-04-20T14:28:14.726-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Firewall"..: timestamp=2022-04-20T14:28:14.726-0400
2022-04-20T14:28:14.726-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "FrontDoor"..: timestamp=2022-04-20T14:28:14.726-0400
2022-04-20T14:28:14.726-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "FrontDoor"..: timestamp=2022-04-20T14:28:14.726-0400
2022-04-20T14:28:14.726-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "HPC Cache"..: timestamp=2022-04-20T14:28:14.726-0400
2022-04-20T14:28:14.726-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "HPC Cache"..: timestamp=2022-04-20T14:28:14.726-0400
2022-04-20T14:28:14.726-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Hardware Security Module"..: timestamp=2022-04-20T14:28:14.726-0400
2022-04-20T14:28:14.726-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Hardware Security Module"..: timestamp=2022-04-20T14:28:14.726-0400
2022-04-20T14:28:14.726-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "HDInsight"..: timestamp=2022-04-20T14:28:14.726-0400
2022-04-20T14:28:14.726-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "HDInsight"..: timestamp=2022-04-20T14:28:14.726-0400
2022-04-20T14:28:14.727-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Health Care"..: timestamp=2022-04-20T14:28:14.727-0400
2022-04-20T14:28:14.727-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Health Care"..: timestamp=2022-04-20T14:28:14.727-0400
2022-04-20T14:28:14.727-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "IoT Hub"..: timestamp=2022-04-20T14:28:14.727-0400
2022-04-20T14:28:14.727-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "IoT Hub"..: timestamp=2022-04-20T14:28:14.727-0400
2022-04-20T14:28:14.727-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "IoT Central"..: timestamp=2022-04-20T14:28:14.727-0400
2022-04-20T14:28:14.727-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "IoT Central"..: timestamp=2022-04-20T14:28:14.727-0400
2022-04-20T14:28:14.727-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "KeyVault"..: timestamp=2022-04-20T14:28:14.727-0400
2022-04-20T14:28:14.727-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "KeyVault"..: timestamp=2022-04-20T14:28:14.727-0400
2022-04-20T14:28:14.727-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Kusto"..: timestamp=2022-04-20T14:28:14.727-0400
2022-04-20T14:28:14.727-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Kusto"..: timestamp=2022-04-20T14:28:14.727-0400
2022-04-20T14:28:14.727-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Legacy"..: timestamp=2022-04-20T14:28:14.727-0400
2022-04-20T14:28:14.727-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Legacy"..: timestamp=2022-04-20T14:28:14.727-0400
2022-04-20T14:28:14.727-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Load Balancer"..: timestamp=2022-04-20T14:28:14.727-0400
2022-04-20T14:28:14.728-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Load Balancer"..: timestamp=2022-04-20T14:28:14.727-0400
2022-04-20T14:28:14.728-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Log Analytics"..: timestamp=2022-04-20T14:28:14.728-0400
2022-04-20T14:28:14.728-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Log Analytics"..: timestamp=2022-04-20T14:28:14.728-0400
2022-04-20T14:28:14.728-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Logic"..: timestamp=2022-04-20T14:28:14.728-0400
2022-04-20T14:28:14.728-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Logic"..: timestamp=2022-04-20T14:28:14.728-0400
2022-04-20T14:28:14.728-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Logz"..: timestamp=2022-04-20T14:28:14.728-0400
2022-04-20T14:28:14.728-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Logz"..: timestamp=2022-04-20T14:28:14.728-0400
2022-04-20T14:28:14.728-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Machine Learning"..: timestamp=2022-04-20T14:28:14.728-0400
2022-04-20T14:28:14.728-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Machine Learning"..: timestamp=2022-04-20T14:28:14.728-0400
2022-04-20T14:28:14.728-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Maintenance"..: timestamp=2022-04-20T14:28:14.728-0400
2022-04-20T14:28:14.728-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Maintenance"..: timestamp=2022-04-20T14:28:14.728-0400
2022-04-20T14:28:14.728-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Managed Applications"..: timestamp=2022-04-20T14:28:14.728-0400
2022-04-20T14:28:14.728-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Managed Applications"..: timestamp=2022-04-20T14:28:14.728-0400
2022-04-20T14:28:14.728-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Lighthouse"..: timestamp=2022-04-20T14:28:14.728-0400
2022-04-20T14:28:14.728-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Lighthouse"..: timestamp=2022-04-20T14:28:14.728-0400
2022-04-20T14:28:14.728-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Management Group"..: timestamp=2022-04-20T14:28:14.728-0400
2022-04-20T14:28:14.728-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Management Group"..: timestamp=2022-04-20T14:28:14.728-0400
2022-04-20T14:28:14.728-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Maps"..: timestamp=2022-04-20T14:28:14.728-0400
2022-04-20T14:28:14.728-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Maps"..: timestamp=2022-04-20T14:28:14.728-0400
2022-04-20T14:28:14.728-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "MariaDB"..: timestamp=2022-04-20T14:28:14.728-0400
2022-04-20T14:28:14.728-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "MariaDB"..: timestamp=2022-04-20T14:28:14.728-0400
2022-04-20T14:28:14.728-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Media"..: timestamp=2022-04-20T14:28:14.728-0400
2022-04-20T14:28:14.728-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Media"..: timestamp=2022-04-20T14:28:14.728-0400
2022-04-20T14:28:14.730-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Mixed Reality"..: timestamp=2022-04-20T14:28:14.730-0400
2022-04-20T14:28:14.730-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Mixed Reality"..: timestamp=2022-04-20T14:28:14.730-0400
2022-04-20T14:28:14.730-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Monitor"..: timestamp=2022-04-20T14:28:14.730-0400
2022-04-20T14:28:14.730-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Monitor"..: timestamp=2022-04-20T14:28:14.730-0400
2022-04-20T14:28:14.730-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Managed Service Identities"..: timestamp=2022-04-20T14:28:14.730-0400
2022-04-20T14:28:14.730-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Managed Service Identities"..: timestamp=2022-04-20T14:28:14.730-0400
2022-04-20T14:28:14.730-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Microsoft SQL Server / Azure SQL"..: timestamp=2022-04-20T14:28:14.730-0400
2022-04-20T14:28:14.730-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Microsoft SQL Server / Azure SQL"..: timestamp=2022-04-20T14:28:14.730-0400
2022-04-20T14:28:14.730-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "MySQL"..: timestamp=2022-04-20T14:28:14.730-0400
2022-04-20T14:28:14.730-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "MySQL"..: timestamp=2022-04-20T14:28:14.730-0400
2022-04-20T14:28:14.730-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "NetApp"..: timestamp=2022-04-20T14:28:14.730-0400
2022-04-20T14:28:14.730-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "NetApp"..: timestamp=2022-04-20T14:28:14.730-0400
2022-04-20T14:28:14.731-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Network"..: timestamp=2022-04-20T14:28:14.731-0400
2022-04-20T14:28:14.731-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Network"..: timestamp=2022-04-20T14:28:14.731-0400
2022-04-20T14:28:14.731-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Notification Hub"..: timestamp=2022-04-20T14:28:14.731-0400
2022-04-20T14:28:14.731-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Notification Hub"..: timestamp=2022-04-20T14:28:14.731-0400
2022-04-20T14:28:14.731-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Policy"..: timestamp=2022-04-20T14:28:14.731-0400
2022-04-20T14:28:14.731-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Policy"..: timestamp=2022-04-20T14:28:14.731-0400
2022-04-20T14:28:14.731-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Portal"..: timestamp=2022-04-20T14:28:14.731-0400
2022-04-20T14:28:14.731-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Portal"..: timestamp=2022-04-20T14:28:14.731-0400
2022-04-20T14:28:14.731-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "PostgreSQL"..: timestamp=2022-04-20T14:28:14.731-0400
2022-04-20T14:28:14.731-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "PostgreSQL"..: timestamp=2022-04-20T14:28:14.731-0400
2022-04-20T14:28:14.731-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "PowerBI"..: timestamp=2022-04-20T14:28:14.731-0400
2022-04-20T14:28:14.731-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "PowerBI"..: timestamp=2022-04-20T14:28:14.731-0400
2022-04-20T14:28:14.731-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Private DNS"..: timestamp=2022-04-20T14:28:14.731-0400
2022-04-20T14:28:14.731-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Private DNS"..: timestamp=2022-04-20T14:28:14.731-0400
2022-04-20T14:28:14.731-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Purview"..: timestamp=2022-04-20T14:28:14.731-0400
2022-04-20T14:28:14.731-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Purview"..: timestamp=2022-04-20T14:28:14.731-0400
2022-04-20T14:28:14.731-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Recovery Services"..: timestamp=2022-04-20T14:28:14.731-0400
2022-04-20T14:28:14.731-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Recovery Services"..: timestamp=2022-04-20T14:28:14.731-0400
2022-04-20T14:28:14.731-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Redis"..: timestamp=2022-04-20T14:28:14.731-0400
2022-04-20T14:28:14.731-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Redis"..: timestamp=2022-04-20T14:28:14.731-0400
2022-04-20T14:28:14.731-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Redis Enterprise"..: timestamp=2022-04-20T14:28:14.731-0400
2022-04-20T14:28:14.731-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Redis Enterprise"..: timestamp=2022-04-20T14:28:14.731-0400
2022-04-20T14:28:14.731-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Relay"..: timestamp=2022-04-20T14:28:14.731-0400
2022-04-20T14:28:14.731-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Relay"..: timestamp=2022-04-20T14:28:14.731-0400
2022-04-20T14:28:14.731-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Resources"..: timestamp=2022-04-20T14:28:14.731-0400
2022-04-20T14:28:14.731-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Resources"..: timestamp=2022-04-20T14:28:14.731-0400
2022-04-20T14:28:14.731-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Search"..: timestamp=2022-04-20T14:28:14.731-0400
2022-04-20T14:28:14.731-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Search"..: timestamp=2022-04-20T14:28:14.731-0400
2022-04-20T14:28:14.731-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Security Center"..: timestamp=2022-04-20T14:28:14.731-0400
2022-04-20T14:28:14.732-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Security Center"..: timestamp=2022-04-20T14:28:14.731-0400
2022-04-20T14:28:14.732-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Sentinel"..: timestamp=2022-04-20T14:28:14.732-0400
2022-04-20T14:28:14.732-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Sentinel"..: timestamp=2022-04-20T14:28:14.732-0400
2022-04-20T14:28:14.732-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "ServiceBus"..: timestamp=2022-04-20T14:28:14.732-0400
2022-04-20T14:28:14.732-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "ServiceBus"..: timestamp=2022-04-20T14:28:14.732-0400
2022-04-20T14:28:14.732-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Service Fabric"..: timestamp=2022-04-20T14:28:14.732-0400
2022-04-20T14:28:14.732-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Service Fabric"..: timestamp=2022-04-20T14:28:14.732-0400
2022-04-20T14:28:14.732-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "SignalR"..: timestamp=2022-04-20T14:28:14.732-0400
2022-04-20T14:28:14.732-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "SignalR"..: timestamp=2022-04-20T14:28:14.732-0400
2022-04-20T14:28:14.733-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "SQL"..: timestamp=2022-04-20T14:28:14.733-0400
2022-04-20T14:28:14.733-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "SQL"..: timestamp=2022-04-20T14:28:14.733-0400
2022-04-20T14:28:14.733-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Storage"..: timestamp=2022-04-20T14:28:14.733-0400
2022-04-20T14:28:14.733-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Storage"..: timestamp=2022-04-20T14:28:14.733-0400
2022-04-20T14:28:14.733-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Stream Analytics"..: timestamp=2022-04-20T14:28:14.733-0400
2022-04-20T14:28:14.733-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Stream Analytics"..: timestamp=2022-04-20T14:28:14.733-0400
2022-04-20T14:28:14.733-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Subscription"..: timestamp=2022-04-20T14:28:14.733-0400
2022-04-20T14:28:14.733-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Subscription"..: timestamp=2022-04-20T14:28:14.733-0400
2022-04-20T14:28:14.733-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Synapse"..: timestamp=2022-04-20T14:28:14.733-0400
2022-04-20T14:28:14.733-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Synapse"..: timestamp=2022-04-20T14:28:14.733-0400
2022-04-20T14:28:14.733-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Time Series Insights"..: timestamp=2022-04-20T14:28:14.733-0400
2022-04-20T14:28:14.733-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Time Series Insights"..: timestamp=2022-04-20T14:28:14.733-0400
2022-04-20T14:28:14.733-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Traffic Manager"..: timestamp=2022-04-20T14:28:14.733-0400
2022-04-20T14:28:14.733-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Traffic Manager"..: timestamp=2022-04-20T14:28:14.733-0400
2022-04-20T14:28:14.733-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Video Analyzer"..: timestamp=2022-04-20T14:28:14.733-0400
2022-04-20T14:28:14.733-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Video Analyzer"..: timestamp=2022-04-20T14:28:14.733-0400
2022-04-20T14:28:14.733-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "VMware"..: timestamp=2022-04-20T14:28:14.733-0400
2022-04-20T14:28:14.733-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "VMware"..: timestamp=2022-04-20T14:28:14.733-0400
2022-04-20T14:28:14.733-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Data Sources for "Web"..: timestamp=2022-04-20T14:28:14.733-0400
2022-04-20T14:28:14.733-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: Registering Resources for "Web"..: timestamp=2022-04-20T14:28:14.733-0400
2022-04-20T14:28:14.734-0400 [INFO]  provider.terraform-provider-azurerm_v3.2.0_x5: configuring server automatic mTLS: timestamp=2022-04-20T14:28:14.734-0400
2022-04-20T14:28:14.742-0400 [DEBUG] provider.terraform-provider-azurerm_v3.2.0_x5: plugin address: address=/var/folders/fc/l8yh50qj41zc3njq8r_lm2jh0000gp/T/plugin4242645544 network=unix timestamp=2022-04-20T14:28:14.742-0400
2022-04-20T14:28:14.742-0400 [DEBUG] provider: using plugin: version=5
2022-04-20T14:28:14.843-0400 [ERROR] vertex "azurerm_linux_function_app.example" error: Unsupported argument
╷
│ Error: Unsupported argument
│
│   on main.tf line 47, in resource "azurerm_linux_function_app" "example":
│   47:     additional_login_params = var.map_var
│
│ An argument named "additional_login_params" is not expected here.
╵
2022-04-20T14:28:14.843-0400 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = transport is closing"
2022-04-20T14:28:14.845-0400 [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/hashicorp/azurerm/3.2.0/darwin_arm64/terraform-provider-azurerm_v3.2.0_x5 pid=92266
2022-04-20T14:28:14.845-0400 [DEBUG] provider: plugin exited

Expected Behaviour

terraform validate should not complain about the argument additional_login_params being an "Unsupported argument".

Actual Behaviour

❯ terraform validate
╷
│ Error: Unsupported argument
│
│   on main.tf line 48, in resource "azurerm_linux_function_app" "example":
│   48:     additional_login_params = var.map_var
│
│ An argument named "additional_login_params" is not expected here.
╵

Steps to Reproduce

terraform validate

Important Factoids

No response

References

https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/linux_function_app#additional_login_params https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/windows_function_app#additional_login_params

Nnachevvv commented 2 years ago

Hello @alexkoepke, I made a fix (https://github.com/hashicorp/terraform-provider-azurerm/pull/16474) , because the parameter name should be "additional_login_parameters" .

github-actions[bot] commented 2 years ago

This functionality has been released in v3.4.0 of the Terraform Provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading.

For further feature requests or bug reports with this functionality, please create a new GitHub issue following the template. Thank you!

github-actions[bot] commented 2 years ago

I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.