damp-honey-93158
09/15/2022, 12:37 PMStorage = new StorageAccount($"{InputArgs.DevOpsProjectShortName}store", new StorageAccountArgs()
{
EnableHttpsTrafficOnly = true,
EnableNfsV3 = false,
Kind = "StorageV2",
ResourceGroupName = Runtime.InfraResGroupName,
Location = InputArgs.Location,
Sku = new Pulumi.AzureNative.Storage.Inputs.SkuArgs()
{
Name = "Standard_LRS"
},
AllowBlobPublicAccess = false
});
StorageFileShare = new FileShare($"{InputArgs.DevOpsProjectName}share", new()
{
AccountName = Storage.Name,
ResourceGroupName = Runtime.InfraResGroupName,
ShareName = "migration"
});
I am a little confused... I don't know why the pulumi system thinks that the file share is worth replacing... this is the partial output from a subsequent pulumi up (with refresh and diff):
[provider=urn😛ulumi:creditor-test:😛rojects:😛ulumi:providers:azure-native::default_1_73_0::bb23b3b0-c386-4ed9-8f78-0f5c59555be7]
- accessTier: "TransactionOptimized"
- shareQuota: 5120
--outputs:--
- accessTier : "TransactionOptimized"
- accessTierChangeTime: "2022-09-15T12:33:40.0000000Z"
- etag : "\"0x8DA971685991300\""
- lastModifiedTime : "2022-09-15T12:33:41.0000000Z"
- shareQuota : 5120
--outputs:--
Help appreciated and thank you!