File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
internal/service/cloudfront Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ import (
13
13
awstypes "github.com/aws/aws-sdk-go-v2/service/cloudfront/types"
14
14
"github.com/hashicorp/terraform-plugin-testing/helper/resource"
15
15
"github.com/hashicorp/terraform-plugin-testing/terraform"
16
+ "github.com/hashicorp/terraform-plugin-testing/tfversion"
16
17
"github.com/hashicorp/terraform-provider-aws/internal/acctest"
17
18
"github.com/hashicorp/terraform-provider-aws/internal/conns"
18
19
"github.com/hashicorp/terraform-provider-aws/names"
@@ -31,7 +32,10 @@ func TestAccCloudFrontCreateInvalidationAction_basic(t *testing.T) {
31
32
},
32
33
ErrorCheck : acctest .ErrorCheck (t , names .CloudFrontServiceID ),
33
34
ProtoV5ProviderFactories : acctest .ProtoV5ProviderFactories ,
34
- CheckDestroy : testAccCheckDistributionDestroy (ctx ),
35
+ TerraformVersionChecks : []tfversion.TerraformVersionCheck {
36
+ tfversion .SkipBelow (tfversion .Version1_14_0 ),
37
+ },
38
+ CheckDestroy : testAccCheckDistributionDestroy (ctx ),
35
39
Steps : []resource.TestStep {
36
40
{
37
41
Config : testAccCreateInvalidationActionConfig_basic (rName ),
You can’t perform that action at this time.
0 commit comments