forked from hashicorp/terraform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
id.go
41 lines (33 loc) · 1.01 KB
/
id.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package resource
import (
"crypto/rand"
"encoding/base32"
"fmt"
"strings"
)
const UniqueIdPrefix = `terraform-`
// Helper for a resource to generate a unique identifier
//
// This uses a simple RFC 4122 v4 UUID with some basic cosmetic filters
// applied (base32, remove padding, downcase) to make visually distinguishing
// identifiers easier.
func UniqueId() string {
return fmt.Sprintf("%s%s", UniqueIdPrefix,
strings.ToLower(
strings.Replace(
base32.StdEncoding.EncodeToString(uuidV4()),
"=", "", -1)))
}
func uuidV4() []byte {
var uuid [16]byte
// Set all the other bits to randomly (or pseudo-randomly) chosen
// values.
rand.Read(uuid[:])
// Set the two most significant bits (bits 6 and 7) of the
// clock_seq_hi_and_reserved to zero and one, respectively.
uuid[8] = (uuid[8] | 0x80) & 0x8f
// Set the four most significant bits (bits 12 through 15) of the
// time_hi_and_version field to the 4-bit version number from Section 4.1.3.
uuid[6] = (uuid[6] | 0x40) & 0x4f
return uuid[:]
}