@@ -2,12 +2,23 @@ package terraform
2
2
3
3
import (
4
4
"fmt"
5
+ "math/rand/v2"
5
6
"strings"
6
7
7
8
"github.com/google/uuid"
8
9
"github.com/zclconf/go-cty/cty"
9
10
)
10
11
12
+ var resourceRandomAttributes = map [string ][]string {
13
+ // If the user leaves the name blank, Terraform will automatically generate a unique name
14
+ "aws_launch_template" : {"name" },
15
+ "random_id" : {"hex" , "dec" , "b64_url" , "b64_std" },
16
+ "random_password" : {"result" , "bcrypt_hash" },
17
+ "random_string" : {"result" },
18
+ "random_bytes" : {"base64" , "hex" },
19
+ "random_uuid" : {"result" },
20
+ }
21
+
11
22
func createPresetValues (b * Block ) map [string ]cty.Value {
12
23
presets := make (map [string ]cty.Value )
13
24
@@ -23,16 +34,21 @@ func createPresetValues(b *Block) map[string]cty.Value {
23
34
// workaround for weird iam feature
24
35
case "aws_iam_policy_document" :
25
36
presets ["json" ] = cty .StringVal (b .ID ())
26
- // If the user leaves the name blank, Terraform will automatically generate a unique name
27
- case "aws_launch_template" :
28
- presets ["name" ] = cty .StringVal (uuid .New ().String ())
29
37
// allow referencing the current region name
30
38
case "aws_region" :
31
39
presets ["name" ] = cty .StringVal ("current-region" )
40
+ case "random_integer" :
41
+ //nolint:gosec
42
+ presets ["result" ] = cty .NumberIntVal (rand .Int64 ())
32
43
}
33
44
34
- return presets
45
+ if attrs , exists := resourceRandomAttributes [b .TypeLabel ()]; exists {
46
+ for _ , attr := range attrs {
47
+ presets [attr ] = cty .StringVal (uuid .New ().String ())
48
+ }
49
+ }
35
50
51
+ return presets
36
52
}
37
53
38
54
func postProcessValues (b * Block , input map [string ]cty.Value ) map [string ]cty.Value {
0 commit comments