From ac997061a192bb7520861edaab5108b173dd61e9 Mon Sep 17 00:00:00 2001 From: Riley Shott Date: Fri, 26 Jan 2018 14:37:55 -0800 Subject: [PATCH] Set ID to 'none' for random_string --- random/resource_string.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/random/resource_string.go b/random/resource_string.go index 9aca8353..7d58ec43 100644 --- a/random/resource_string.go +++ b/random/resource_string.go @@ -162,7 +162,7 @@ func CreateString(d *schema.ResourceData, meta interface{}) error { }) d.Set("result", string(result)) - d.SetId(string(result)) + d.SetId("none") return nil }