From 7ff5cf91dd5eabd2fcb0eaead3e23bb92f5573a7 Mon Sep 17 00:00:00 2001 From: Marcus Noble Date: Thu, 18 Apr 2019 05:47:53 +0100 Subject: [PATCH] Remove diff suppression func --- aws/resource_aws_autoscaling_group.go | 7 ------- 1 file changed, 7 deletions(-) diff --git a/aws/resource_aws_autoscaling_group.go b/aws/resource_aws_autoscaling_group.go index 94c6802b7847..3f4141c3252d 100644 --- a/aws/resource_aws_autoscaling_group.go +++ b/aws/resource_aws_autoscaling_group.go @@ -94,13 +94,6 @@ func resourceAwsAutoscalingGroup() *schema.Resource { Type: schema.TypeList, Optional: true, MaxItems: 1, - // Ignore missing configuration block - DiffSuppressFunc: func(k, old, new string, d *schema.ResourceData) bool { - if old == "1" && new == "0" { - return true - } - return false - }, Elem: &schema.Resource{ Schema: map[string]*schema.Schema{ "on_demand_allocation_strategy": {