-
Notifications
You must be signed in to change notification settings - Fork 4.7k
New issue
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
azurerm_storage_blob
- source
is no longer ForceNew / azurerm_storage_object_replication
- rules.x. source_container_name
and rules.x. destination_container_name
are no longer ForceNew
#27394
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -325,14 +325,13 @@ func (r StorageShareFileResource) complete(data acceptance.TestData) string { | |
%s | ||
|
||
resource "azurerm_storage_share_file" "test" { | ||
name = "test" | ||
name = "file" | ||
storage_share_id = azurerm_storage_share.test.id | ||
|
||
|
||
content_type = "test_content_type" | ||
content_encoding = "test_encoding" | ||
content_disposition = "test_content_disposition" | ||
content_md5 = "1234567890abcdef1234567890abcdef" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This attribute can't be updated and we use it in another test so it should be ok to remove here |
||
|
||
metadata = { | ||
hello = "world" | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -207,13 +207,6 @@ func TestAccStorageShare_accessTierStandard(t *testing.T) { | |
), | ||
}, | ||
data.ImportStep(), | ||
{ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
Config: r.accessTierStandard(data, "TransactionOptimized"), | ||
Check: acceptance.ComposeTestCheckFunc( | ||
check.That(data.ResourceName).ExistsInAzure(r), | ||
), | ||
}, | ||
data.ImportStep(), | ||
}) | ||
} | ||
|
||
|
@@ -252,7 +245,7 @@ func TestAccStorageShare_protocolUpdate(t *testing.T) { | |
data := acceptance.BuildTestData(t, "azurerm_storage_share", "test") | ||
r := StorageShareResource{} | ||
|
||
data.ResourceTest(t, r, []acceptance.TestStep{ | ||
data.ResourceTestIgnoreRecreate(t, r, []acceptance.TestStep{ | ||
{ | ||
Config: r.protocol(data, "NFS"), | ||
Check: acceptance.ComposeTestCheckFunc( | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These ForceNews aren't needed anymore. I checked to make sure that it didn't cause issues with this resource by updating them to different things and Azure accepted them just fine