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 @@ -143,6 +143,7 @@ module "proxy" {
143
143
cloudfront_minimum_protocol_version = var. cloudfront_minimum_protocol_version
144
144
debug_use_local_packages = var. debug_use_local_packages
145
145
tags = var. tags
146
+ lambda_role_permissions_boundary = var. lambda_role_permissions_boundary
146
147
147
148
providers = {
148
149
aws = aws.global_region
Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ module "edge_proxy" {
43
43
description = " Managed by Terraform-next.js"
44
44
handler = " handler.handler"
45
45
runtime = var. lambda_default_runtime
46
+ role_permissions_boundary = var. lambda_role_permissions_boundary
46
47
47
48
create_package = false
48
49
local_existing_package = module. proxy_package . abs_path
Original file line number Diff line number Diff line change @@ -65,3 +65,8 @@ variable "tags" {
65
65
type = map (string )
66
66
default = {}
67
67
}
68
+
69
+ variable "lambda_role_permissions_boundary" {
70
+ type = string
71
+ default = null
72
+ }
You can’t perform that action at this time.
0 commit comments