-
Notifications
You must be signed in to change notification settings - Fork 335
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
Enable static website for storage account #459
Comments
I can't commit to this issue as I've already got a lot on my plate currently, however I had some relevant feedback. The specific tunable is part of the |
Thanks for the detail, Paul. I plan to pick this up next week. How would you suggest modifying azure_rm_storageblob for this feature? The module currently has blob container name as a required field, but modifying service properties can be done on a storage account with no containers. |
storageblob may not be the best place. It's definitely part of the same SDK package, but it may make sense to make a new module, something like azure_rm_storageaccount_staticwebsite that will instantiate it. I thought the property was container level, not account level. |
I started looking at implementing this feature (more generically, supporting service properties for a storage account), but I ran into dependency troubles due to the azure-storage package being deprecated and replaced by separate/different components (see 0.37.0 release notes). Due to this I'd like to wait until dependency packages have been updated (#130). After that I will pick this effort up. cc @Fred-sun |
I've raised #878 to add this feature. |
SUMMARY
It doesn't appear there is a way to enable the "static website" feature of a storage account.
ISSUE TYPE
COMPONENT NAME
plugins/modules/azure_rm_storageaccount.py
ADDITIONAL INFORMATION
The azure cli equivalent of this is
az storage blob service-properties
. It's non-intuitively named under storage "blob", but these appear to be settings specific for the storage "account".The text was updated successfully, but these errors were encountered: