mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-20 11:48:24 -06: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
|
|
}
|