Reverted alb false logic to be a string instead of converted bool to

string
This commit is contained in:
Joel Vasallo 2016-10-09 22:09:41 -05:00
parent e00b2448d8
commit 16c1366e63
1 changed files with 1 additions and 1 deletions

View File

@ -297,7 +297,7 @@ func resourceAwsAlbUpdate(d *schema.ResourceData, meta interface{}) error {
} else if len(logs) == 0 {
attributes = append(attributes, &elbv2.LoadBalancerAttribute{
Key: aws.String("access_logs.s3.enabled"),
Value: aws.String(strconv.FormatBool(false)),
Value: aws.String("false"),
})
}
}