-
Notifications
You must be signed in to change notification settings - Fork 4.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
azurerm_storage_account
cannot be created without internet access due to static_website
field
#27750
Comments
azurerm_storage_account
cannot be created without internet access due to ´static_website` fieldazurerm_storage_account
cannot be created without internet access due to static_website
field
Thank you for filing this issue. Looks like duplicate with #27310 |
Thanks, it's very similar at least. Afaics, all referenced issues are caused by the fact that the Azure API does not deliver the data that is needed and accessing I suggest using the |
Per my knowledge adding |
Thanks for the update. account_tier = "Premium"
account_replication_type = "LRS"
account_kind = "FileStorage" This is just a workaround and does not solve the issue. |
I've taken the latest azurerm upgrade to 4.9.0 which contains @jackofallops fix in #27818 , with the My storage account definition does not have a queue_properties block defined, but the existing tfstate file does define queue_properties - I'm assuming that presumably default values are being used. When I run terraform plan, I get the following error
What's the intended upgrade story for setting |
Is there an existing issue for this?
Community Note
Terraform Version
1.9.5
AzureRM Provider Version
4.3.0
Affected Resource(s)/Data Source(s)
azurerm_storage_account
Terraform Configuration Files
Debug Output/Panic Output
Expected Behaviour
No response
Actual Behaviour
The domain
*.core.windows.net
is blocked by our company firewall, so the request to that URL is supposed to fail. As I understand it, the root cause is that azure itself does not provide the current state ofstatic_website
via the API. [Azure/azure-rest-api-specs/issues/22984]That said, it should be possible to explicitly ignore changes and thus not trigger the refresh if disabled in
lifecycle
. That would allow us to create the storage and PEP as planned.Steps to Reproduce
terraform plan
Important Factoids
No response
References
Azure/azure-rest-api-specs#22984 <- the root cause of this and the other issues
#27750
#20257
#2977
The text was updated successfully, but these errors were encountered: