From 1048d8b4ef22f815ba1c277cc925374d5886fd57 Mon Sep 17 00:00:00 2001 From: sundowndev Date: Wed, 7 Apr 2021 18:51:23 +0200 Subject: [PATCH] fix: false positive on field InstanceInitiatedShutdownBehavior --- pkg/resource/aws/aws_instance.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/resource/aws/aws_instance.go b/pkg/resource/aws/aws_instance.go index 5deeee574..a6b1716f0 100644 --- a/pkg/resource/aws/aws_instance.go +++ b/pkg/resource/aws/aws_instance.go @@ -17,7 +17,7 @@ type AwsInstance struct { HostId *string `cty:"host_id" computed:"true"` IamInstanceProfile *string `cty:"iam_instance_profile"` Id string `cty:"id" computed:"true"` - InstanceInitiatedShutdownBehavior *string `cty:"instance_initiated_shutdown_behavior"` + InstanceInitiatedShutdownBehavior *string `cty:"instance_initiated_shutdown_behavior" diff:"-"` InstanceState *string `cty:"instance_state" computed:"true"` InstanceType *string `cty:"instance_type"` Ipv6AddressCount *int `cty:"ipv6_address_count" computed:"true"`