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
Hello,
I'm trying to create a BlockBlobStorage account type.
I got an error because the parameter access_tier seems to be a required parameter in this module:
access_tier
In the AzureRM provider,the access_tier parameter is "Only valid for FileStorage, BlobStorage & StorageV2 accounts, defaults to "Hot" in create function": https://github.com/hashicorp/terraform-provider-azurerm/pull/24496/files
Should we put access_tier as optional?
If I comment out this line: https://github.com/Azure-Terraform/terraform-azurerm-storage-account/blob/main/main.tf#L14 the terraform plan is ok when I try to create BlockBlobStorage storage account type.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
I'm trying to create a BlockBlobStorage account type.
I got an error because the parameter
access_tier
seems to be a required parameter in this module:In the AzureRM provider,the
access_tier
parameter is "Only valid for FileStorage, BlobStorage & StorageV2 accounts, defaults to "Hot" in create function":https://github.com/hashicorp/terraform-provider-azurerm/pull/24496/files
Should we put
access_tier
as optional?If I comment out this line: https://github.com/Azure-Terraform/terraform-azurerm-storage-account/blob/main/main.tf#L14 the terraform plan is ok when I try to create BlockBlobStorage storage account type.
The text was updated successfully, but these errors were encountered: