Marcelo Zambrana Villarroel
Marcelo Zambrana Villarroel
Is there a workaround for this? or plans to fix it?
The workaround I found is to use the new [AzAPI provider](https://docs.microsoft.com/en-us/azure/developer/terraform/overview-azapi-provider) It would be something like this ```terraform resource "azapi_update_resource" "example" { type = "Microsoft.Storage/storageAccounts@2021-09-01" resource_id = azurerm_storage_account.example.id body =...
Cool! It seems the documentation has been updated as well: https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/storage_account#public_network_access_enabled I tried with terraform 1.3.2 and azurerm 3.27.0 and worked!!! Awesome great job! I guess we can close this...
@djbark yep, you are right. It should be there: ```bash az functionapp list-runtimes --os windows -o table Runtime Version --------------- --------- dotnet-isolated 8 dotnet-isolated 7 dotnet-isolated 6 dotnet-isolated .4.8 dotnet...
@admsallai interesting, have you tried adding that `identity` block and set it to `SystemAssigned` ? you might also upgrade the provider to the latest one 3.102.0 3.83.0 is kind of...
@farwind you are right. It failed when using only the required values in the documentation. I added ```tf identity { type = "SystemAssigned" } ``` and it worked. Do not...
Please! can we get an update on this?