diff --git a/src/Storage/Storage.Management/ChangeLog.md b/src/Storage/Storage.Management/ChangeLog.md index bc2afb963652..46e585de4841 100644 --- a/src/Storage/Storage.Management/ChangeLog.md +++ b/src/Storage/Storage.Management/ChangeLog.md @@ -21,6 +21,8 @@ * Updated Azure.Core to 1.34.0. * Added support for encryption context - `New-AzDataLakeGen2Item` +* Updated warning messages for an upcoming breaking change when creating a storage account + - `New-AzStorageAccount` ## Version 5.9.0 diff --git a/src/Storage/Storage.Management/StorageAccount/NewAzureStorageAccount.cs b/src/Storage/Storage.Management/StorageAccount/NewAzureStorageAccount.cs index 8fd9a7b94855..5c892cd78eb5 100644 --- a/src/Storage/Storage.Management/StorageAccount/NewAzureStorageAccount.cs +++ b/src/Storage/Storage.Management/StorageAccount/NewAzureStorageAccount.cs @@ -26,9 +26,9 @@ namespace Microsoft.Azure.Commands.Management.Storage { - [GenericBreakingChangeWithVersion("Default value of AllowBlobPublicAccess and AllowCrossTenantReplication will be changed from True to False in a future release. \n" + - "When AllowBlobPublicAccess is False on a storage account, it is not permitted to configure container ACLs to allow anonymous access to blobs within the storage account. \n" + - "When AllowCrossTenantReplication is False on a storage account, cross AAD tenant object replication is not allowed.", + [GenericBreakingChangeWithVersion("Default value of AllowBlobPublicAccess and AllowCrossTenantReplication settings on storage account will be changed to False in the future release. \n" + + "When AllowBlobPublicAccess is False on a storage account, container ACLs cannot be configured to allow anonymous access to blobs within the storage account. \n" + + "When AllowCrossTenantReplication is False on a storage account, cross AAD tenant object replication is not allowed when setting up Object Replication policies.", "11.0.0", "6.0.0", OldWay = "AllowBlobPublicAccess and AllowCrossTenantReplication are set to True by defult.", NewWay = "AllowBlobPublicAccess and AllowCrossTenantReplication are set to False by default.")]