File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ func TestTerraformRender(t *testing.T) {
24
24
FunctionsPath : "functions-path" ,
25
25
Region : "aws-region" ,
26
26
PublicKey : "public-key" ,
27
+ ResourceSuffix : "abcdef" ,
27
28
ResourceTags : map [string ]string {
28
29
"tag1" : "value1" ,
29
30
"tag2" : "value2" ,
Original file line number Diff line number Diff line change @@ -52,19 +52,18 @@ module "functions" {
52
52
functions = local. functions
53
53
s3_bucket = local. functions_bucket
54
54
prefix = " mantil"
55
- suffix = " "
55
+ suffix = " abcdef "
56
56
}
57
57
58
58
module "cli_role" {
59
59
source = " ../../modules/iam-role"
60
- prefix = " mantil"
61
- suffix = " "
60
+ name = " mantil-cli-user-abcdef"
62
61
}
63
62
64
63
module "api" {
65
64
source = " ../../modules/api"
66
65
prefix = " mantil"
67
- suffix = " "
66
+ suffix = " abcdef "
68
67
functions_bucket = local. functions_bucket
69
68
functions_s3_path = local. functions_s3_path
70
69
integrations = [for f in module . functions . functions :
You can’t perform that action at this time.
0 commit comments