We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
There is a new public preview feature for storage account: https://techcommunity.microsoft.com/t5/azure-storage-blog/public-preview-create-additional-5000-azure-storage-accounts/ba-p/3465466. It introduced a new property dnsEndpointType, when it is set to AzureDnsZone, the endpoints of the sub-service are changed from the form: myAccountname.[service type].[url] to myAccountname.[dnszone].[service type].[url].
dnsEndpointType
AzureDnsZone
myAccountname.[service type].[url]
myAccountname.[dnszone].[service type].[url]
This needs a change in this SDK, mostly around: internal/endpoints/endpoints.go.
Related to hashicorp/terraform-provider-azurerm#17513
The text was updated successfully, but these errors were encountered:
NEED SDK SUPPORT: storage account introduce dns_endpoint_type
dns_endpoint_type
ec43b74
With current state, the read on the data plane resource will block for DNS issue. This needs SDK support. See tombuildsstuff/giovanni#62.
This is supported in the new base layer, closing this in favour of #68 where this'll become available.
Sorry, something went wrong.
No branches or pull requests
There is a new public preview feature for storage account: https://techcommunity.microsoft.com/t5/azure-storage-blog/public-preview-create-additional-5000-azure-storage-accounts/ba-p/3465466. It introduced a new property
dnsEndpointType
, when it is set toAzureDnsZone
, the endpoints of the sub-service are changed from the form:myAccountname.[service type].[url]
tomyAccountname.[dnszone].[service type].[url]
.This needs a change in this SDK, mostly around: internal/endpoints/endpoints.go.
Related to hashicorp/terraform-provider-azurerm#17513
The text was updated successfully, but these errors were encountered: