From 115cf4744abad5b4c69a629b7edb8e333ae0cf9e Mon Sep 17 00:00:00 2001 From: mioi hanaoka Date: Fri, 3 Feb 2017 12:53:44 -0800 Subject: [PATCH] Documentation fix for random_id This attribute, `decimal`, should actually be `dec`. reference: https://github.com/hashicorp/terraform/blob/a0c5d42fa41c4c3d38f74d493fa7922028aa267f/builtin/providers/random/resource_id.go#L54 --- website/source/docs/providers/random/r/id.html.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/source/docs/providers/random/r/id.html.md b/website/source/docs/providers/random/r/id.html.md index 2fdcdd4a4..266a25380 100644 --- a/website/source/docs/providers/random/r/id.html.md +++ b/website/source/docs/providers/random/r/id.html.md @@ -66,4 +66,4 @@ The following attributes are exported: * `b64` - The generated id presented in base64, using the URL-friendly character set: case-sensitive letters, digits and the characters `_` and `-`. * `hex` - The generated id presented in padded hexadecimal digits. This result will always be twice as long as the requested byte length. -* `decimal` - The generated id presented in non-padded decimal digits. +* `dec` - The generated id presented in non-padded decimal digits.