Terraform – force refresh of credentials?
As a part of my Terraform I’m attempting to execute following flow:
Authorization Failed Error on Listing Static Site Secrets with Terraform v1.8.0 and Azurerm v3.105.0
I’m encountering an AuthorizationFailed
error when trying to list secrets for a static site using Terraform v1.8.0 and Azurerm provider v3.105.0. The error message is as follows:
AuthorizationFailed error when listing secrets for Static Site after upgrading to Terraform v1.8.0 and azurerm v3.105.0
Terraform Version Terraform: v1.8.0 Azurerm Provider: v3.105.0 Affected Resource(s) azurerm_static_site Terraform Configuration Files provider “azurerm” { features {} } resource “azurerm_static_site” “example” { name = “example-static-site” resource_group_name = “example-rg” location = “West US 2” identity { type = “SystemAssigned” } } Error: listing secrets for Static Site: (Name “example-static-site” / Resource Group “example-rg”): web.StaticSitesClient#ListStaticSiteSecrets: Failure […]