File tree 3 files changed +7
-0
lines changed
3 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -45,6 +45,7 @@ module "statics_deploy" {
45
45
cloudfront_id = module. proxy . cloudfront_id
46
46
cloudfront_arn = module. proxy . cloudfront_arn
47
47
tags = var. tags
48
+ lambda_role_permissions_boundary = var. lambda_role_permissions_boundary
48
49
}
49
50
50
51
# Lambda
Original file line number Diff line number Diff line change @@ -168,6 +168,7 @@ module "deploy_trigger" {
168
168
timeout = 60
169
169
publish = true
170
170
tags = var. tags
171
+ role_permissions_boundary = var. lambda_role_permissions_boundary
171
172
172
173
create_package = false
173
174
local_existing_package = module. lambda_content . abs_path
Original file line number Diff line number Diff line change @@ -30,3 +30,8 @@ variable "tags" {
30
30
type = map (string )
31
31
default = {}
32
32
}
33
+
34
+ variable "lambda_role_permissions_boundary" {
35
+ type = string
36
+ default = null
37
+ }
You can’t perform that action at this time.
0 commit comments