commit
395b61825d
|
@ -326,7 +326,7 @@ func resourceAwsEcsServiceDelete(d *schema.ResourceData, meta interface{}) error
|
||||||
return resp, "FAILED", err
|
return resp, "FAILED", err
|
||||||
}
|
}
|
||||||
|
|
||||||
log.Printf("[DEBUG] ECS service %s is currently %q", *resp.Services[0].Status)
|
log.Printf("[DEBUG] ECS service (%s) is currently %q", d.Id(), *resp.Services[0].Status)
|
||||||
return resp, *resp.Services[0].Status, nil
|
return resp, *resp.Services[0].Status, nil
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
|
@ -52,7 +52,7 @@ func resourceArmAvailabilitySet() *schema.Resource {
|
||||||
value := v.(int)
|
value := v.(int)
|
||||||
if value > 3 {
|
if value > 3 {
|
||||||
errors = append(errors, fmt.Errorf(
|
errors = append(errors, fmt.Errorf(
|
||||||
"Maximum value for `platform_fault_domain_count` is 3", k))
|
"Maximum value for (%s) is 3", k))
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue