Skip to content

Commit

Permalink
Merge pull request #923 from hashicorp/aws-read-termination-policies
Browse files Browse the repository at this point in the history
providers/aws: read ASG termination policies
  • Loading branch information
mitchellh committed Feb 17, 2015
2 parents 1fa6141 + 926effb commit fd01b01
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions builtin/providers/aws/resource_aws_autoscaling_group.go
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,7 @@ func resourceAwsAutoscalingGroupRead(d *schema.ResourceData, meta interface{}) e
d.Set("max_size", g.MaxSize)
d.Set("name", g.Name)
d.Set("vpc_zone_identifier", strings.Split(g.VPCZoneIdentifier, ","))
d.Set("termination_policies", g.TerminationPolicies)

return nil
}
Expand Down

0 comments on commit fd01b01

Please sign in to comment.