Skip to content

Commit 745d6f4

Browse files
authored
update warning message (#22619)
1 parent c1f63f5 commit 745d6f4

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

src/Storage/Storage.Management/ChangeLog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@
2121
* Updated Azure.Core to 1.34.0.
2222
* Added support for encryption context
2323
- `New-AzDataLakeGen2Item`
24+
* Updated warning messages for an upcoming breaking change when creating a storage account
25+
- `New-AzStorageAccount`
2426

2527

2628
## Version 5.9.0

src/Storage/Storage.Management/StorageAccount/NewAzureStorageAccount.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@
2626

2727
namespace Microsoft.Azure.Commands.Management.Storage
2828
{
29-
[GenericBreakingChangeWithVersion("Default value of AllowBlobPublicAccess and AllowCrossTenantReplication will be changed from True to False in a future release. \n" +
30-
"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" +
31-
"When AllowCrossTenantReplication is False on a storage account, cross AAD tenant object replication is not allowed.",
29+
[GenericBreakingChangeWithVersion("Default value of AllowBlobPublicAccess and AllowCrossTenantReplication settings on storage account will be changed to False in the future release. \n" +
30+
"When AllowBlobPublicAccess is False on a storage account, container ACLs cannot be configured to allow anonymous access to blobs within the storage account. \n" +
31+
"When AllowCrossTenantReplication is False on a storage account, cross AAD tenant object replication is not allowed when setting up Object Replication policies.",
3232
"11.0.0", "6.0.0",
3333
OldWay = "AllowBlobPublicAccess and AllowCrossTenantReplication are set to True by defult.",
3434
NewWay = "AllowBlobPublicAccess and AllowCrossTenantReplication are set to False by default.")]

0 commit comments

Comments
 (0)