mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-13 01:00:50 -04:00
15 lines
217 B
Go
15 lines
217 B
Go
package rabbitmq
|
|
|
|
import (
|
|
"github.com/hashicorp/terraform/helper/schema"
|
|
)
|
|
|
|
func checkDeleted(d *schema.ResourceData, err error) error {
|
|
if err.Error() == "not found" {
|
|
d.SetId("")
|
|
return nil
|
|
}
|
|
|
|
return err
|
|
}
|