aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/github.com/hashicorp/terraform/helper/resource/id.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/hashicorp/terraform/helper/resource/id.go')
-rw-r--r--vendor/github.com/hashicorp/terraform/helper/resource/id.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/vendor/github.com/hashicorp/terraform/helper/resource/id.go b/vendor/github.com/hashicorp/terraform/helper/resource/id.go
index 1cde67c..4494955 100644
--- a/vendor/github.com/hashicorp/terraform/helper/resource/id.go
+++ b/vendor/github.com/hashicorp/terraform/helper/resource/id.go
@@ -18,6 +18,11 @@ func UniqueId() string {
18 return PrefixedUniqueId(UniqueIdPrefix) 18 return PrefixedUniqueId(UniqueIdPrefix)
19} 19}
20 20
21// UniqueIDSuffixLength is the string length of the suffix generated by
22// PrefixedUniqueId. This can be used by length validation functions to
23// ensure prefixes are the correct length for the target field.
24const UniqueIDSuffixLength = 26
25
21// Helper for a resource to generate a unique identifier w/ given prefix 26// Helper for a resource to generate a unique identifier w/ given prefix
22// 27//
23// After the prefix, the ID consists of an incrementing 26 digit value (to match 28// After the prefix, the ID consists of an incrementing 26 digit value (to match