Skip to content

Commit d5d65f4

Browse files
committed
add skip for list as well
1 parent d9abd64 commit d5d65f4

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

statecheck/expect_identity_value_test.go

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,12 @@ func TestExpectIdentityValue_CheckState_List(t *testing.T) {
193193
r.Test(t, r.TestCase{
194194
TerraformVersionChecks: []tfversion.TerraformVersionCheck{
195195
tfversion.SkipBelow(tfversion.Version1_12_0),
196+
// TODO: There is currently a bug in Terraform v1.12.0-alpha20250319 that causes a panic
197+
// when refreshing a resource that has an identity stored via protocol v6.
198+
//
199+
// We can remove this skip once the bug fix is merged/released:
200+
// - https://github.com/hashicorp/terraform/pull/36756
201+
tfversion.SkipIf(version.Must(version.NewVersion("1.12.0-alpha20250319"))),
196202
},
197203
ProtoV6ProviderFactories: map[string]func() (tfprotov6.ProviderServer, error){
198204
"examplecloud": examplecloudProviderWithResourceIdentity(),

0 commit comments

Comments
 (0)