Merge pull request #3946 from hashicorp/fix-ecs-datatype
aws: Add missing dereference operator
This commit is contained in:
commit
5d898f1c5f
|
@ -165,7 +165,7 @@ func resourceAwsEcsServiceRead(d *schema.ResourceData, meta interface{}) error {
|
||||||
|
|
||||||
// Status==INACTIVE means deleted service
|
// Status==INACTIVE means deleted service
|
||||||
if *service.Status == "INACTIVE" {
|
if *service.Status == "INACTIVE" {
|
||||||
log.Printf("[DEBUG] Removing ECS service %q because it's INACTIVE", service.ServiceArn)
|
log.Printf("[DEBUG] Removing ECS service %q because it's INACTIVE", *service.ServiceArn)
|
||||||
d.SetId("")
|
d.SetId("")
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue