You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While I was working enabling Azure App Service WebApp and Http logs, I've used data_source_storage_account_blob_container_sas resource to generate SAS token. When we created SAS token and attached it to App Service, the logging feature doesn't work. After going deep on this, I noticed that the SAS token version is older than the version when I generated with Azure Powershell. The data_source_storage_account_blob_container_sas resource uses storage helper in this repo and the blobContainerSignedVersion parameter was set to "2018-11-09" as constant in sas_token.go file line 17. const ( connStringAccountKeyKey = "AccountKey" connStringAccountNameKey = "AccountName" blobContainerSignedVersion = "2018-11-09" )
Is there any way to update the version to generate the SAS token with the latest version "2019-02-02". Then we will be able to use data_source_storage_account_blob_container_sas resource and app service logging feature of the terraform azurerm provider.
The text was updated successfully, but these errors were encountered:
Hello,
While I was working enabling Azure App Service WebApp and Http logs, I've used data_source_storage_account_blob_container_sas resource to generate SAS token. When we created SAS token and attached it to App Service, the logging feature doesn't work. After going deep on this, I noticed that the SAS token version is older than the version when I generated with Azure Powershell. The data_source_storage_account_blob_container_sas resource uses storage helper in this repo and the blobContainerSignedVersion parameter was set to "2018-11-09" as constant in sas_token.go file line 17.
const ( connStringAccountKeyKey = "AccountKey" connStringAccountNameKey = "AccountName" blobContainerSignedVersion = "2018-11-09" )
Is there any way to update the version to generate the SAS token with the latest version "2019-02-02". Then we will be able to use data_source_storage_account_blob_container_sas resource and app service logging feature of the terraform azurerm provider.
The text was updated successfully, but these errors were encountered: