Reverted alb false logic to be a string instead of converted bool to
string
This commit is contained in:
parent
e00b2448d8
commit
16c1366e63
|
@ -297,7 +297,7 @@ func resourceAwsAlbUpdate(d *schema.ResourceData, meta interface{}) error {
|
||||||
} else if len(logs) == 0 {
|
} else if len(logs) == 0 {
|
||||||
attributes = append(attributes, &elbv2.LoadBalancerAttribute{
|
attributes = append(attributes, &elbv2.LoadBalancerAttribute{
|
||||||
Key: aws.String("access_logs.s3.enabled"),
|
Key: aws.String("access_logs.s3.enabled"),
|
||||||
Value: aws.String(strconv.FormatBool(false)),
|
Value: aws.String("false"),
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue