File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ func TestTerraformRender(t *testing.T) {
27
27
"tag1" : "value1" ,
28
28
"tag2" : "value2" ,
29
29
},
30
+ NamingTemplate : "mantil-%s" ,
30
31
}
31
32
tf , err := terraform .Setup (data )
32
33
require .NoError (t , err )
Original file line number Diff line number Diff line change @@ -33,19 +33,20 @@ module "functions" {
33
33
suffix = " abcdef"
34
34
region = local. aws_region
35
35
cli_role_arn = module. cli_role . arn
36
+ naming_template = " mantil-%s"
36
37
}
37
38
38
39
39
40
module "cli_role" {
40
41
source = " ../../modules/cli-role"
41
- prefix = " mantil"
42
42
suffix = " abcdef"
43
+ naming_template = " mantil-%s"
43
44
}
44
45
45
46
module "api" {
46
47
source = " ../../modules/api"
47
- prefix = " mantil"
48
48
suffix = " abcdef"
49
+ naming_template = " mantil-%s"
49
50
functions_bucket = local. functions_bucket
50
51
functions_s3_path = local. functions_s3_path
51
52
integrations = [for f in module . functions . functions :
You can’t perform that action at this time.
0 commit comments