https://pulumi.com logo
Title
p

polite-shoe-79877

05/04/2021, 8:23 PM
having trouble deploying Azure Storage Account with nfs
const storageAccount = new azure_native.storage.StorageAccount(`storage-account`, {
            accountName: accountName,
            enableNfsV3: true,
            kind: "FileStorage",
            location: "westeurope",
            minimumTlsVersion: "TLS1_2",
            resourceGroupName: resourceGroupName,
            sku: {
                name: "Premium_LRS"
            },
            networkRuleSet: {
                bypass: "AzureServices",
                defaultAction: "Allow",
                ipRules: [],
                virtualNetworkRules: [{
                    virtualNetworkResourceId: subnetId,
                }],
            }
        }
Getting following error Code="InvalidRequestPropertyValue" Message="The value 'True' is not allowed for property isNfsv3Enabled."
b

billowy-army-68599

05/04/2021, 8:26 PM
could you open an issue for this? looks like a bug 😞
p

polite-shoe-79877

05/04/2021, 8:28 PM
yes i can