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
1.3.9
3.35.0
azurerm_storage_container
resource "azurerm_resource_group" "example" { name = "example-resources" location = "West Europe" } resource "azurerm_storage_account" "example" { name = "examplestoraccount" resource_group_name = azurerm_resource_group.example.name location = azurerm_resource_group.example.location account_tier = "Standard" account_replication_type = "LRS" tags = { environment = "staging" } } resource "azurerm_storage_container" "example" { name = "container" storage_account_name = azurerm_storage_account.example.name container_access_type = "private" metadata = { myKey = "value" } }
N/A
camelCase names should be allowed for key names.
terraform enforces all lowercase as per changes done in #10723
No response
Key case was enforced to lowercase by #10723, however in the Portal it's possible to create upper case labels.
The text was updated successfully, but these errors were encountered:
The issue resides in the go-autorest:
go-autorest
terraform-provider-azurerm/vendor/github.com/Azure/go-autorest/autorest/preparer.go
Line 151 in 8c7510d
Sorry, something went wrong.
autorest.WithHeaders
@tombuildsstuff Do we have a plan to migrate the transport layer for giovanni, given go-autorest seems not going to fix: Azure/go-autorest#721
@magodo see tombuildsstuff/giovanni#71, tombuildsstuff/giovanni#68 and tombuildsstuff/giovanni#75
No branches or pull requests
Is there an existing issue for this?
Community Note
Terraform Version
1.3.9
AzureRM Provider Version
3.35.0
Affected Resource(s)/Data Source(s)
azurerm_storage_container
Terraform Configuration Files
Debug Output/Panic Output
Expected Behaviour
camelCase names should be allowed for key names.
Actual Behaviour
terraform enforces all lowercase as per changes done in #10723
Steps to Reproduce
Important Factoids
No response
References
Key case was enforced to lowercase by #10723, however in the Portal it's possible to create upper case labels.
The text was updated successfully, but these errors were encountered: