19 lines
358 B
Go
19 lines
358 B
Go
package alicloud
|
|
|
|
import (
|
|
"bytes"
|
|
"fmt"
|
|
"github.com/hashicorp/terraform/helper/hashcode"
|
|
)
|
|
|
|
// Generates a hash for the set hash function used by the ID
|
|
func dataResourceIdHash(ids []string) string {
|
|
var buf bytes.Buffer
|
|
|
|
for _, id := range ids {
|
|
buf.WriteString(fmt.Sprintf("%s-", id))
|
|
}
|
|
|
|
return fmt.Sprintf("%d", hashcode.String(buf.String()))
|
|
}
|