File tree Expand file tree Collapse file tree 5 files changed +18
-2
lines changed
Expand file tree Collapse file tree 5 files changed +18
-2
lines changed Original file line number Diff line number Diff line change 22
33## [ Unreleased]
44
5+ ## [ 0.11.3] - 2022-01-30
6+
7+ ### Added
8+
9+ - Adds new output for Lambda role ARNs ` lambda_execution_role_arns ` ([ #270 ] ( https://github.com/milliHQ/terraform-aws-next-js/pull/270 ) )
10+
511## [ 0.11.2] - 2022-01-23
612
713### Added
Original file line number Diff line number Diff line change @@ -252,6 +252,7 @@ You can create a `.terraformignore` in the root of your project and add the foll
252252| cloudfront\_ hosted\_ zone\_ id | Zone id of the main CloudFront distribution (When created). |
253253| cloudfront\_ ordered\_ cache\_ behaviors | Preconfigured ordered cache behaviors the CloudFront distribution should use. |
254254| cloudfront\_ origins | Preconfigured origins the CloudFront distribution should use. |
255+ | lambda\_ execution\_ role\_ arns | Lambda execution IAM Role ARNs |
255256| static\_ upload\_ bucket\_ id | n/a |
256257
257258<!-- - END_TF_DOCS --->
Original file line number Diff line number Diff line change 44
55variable "proxy_module_version" {
66 type = string
7- default = " 0.11.2 "
7+ default = " 0.11.3 "
88}
99
1010variable "lambda_default_runtime" {
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ variable "static_files_archive" {
44
55variable "deploy_trigger_module_version" {
66 type = string
7- default = " 0.11.2 "
7+ default = " 0.11.3 "
88}
99
1010variable "expire_static_assets" {
Original file line number Diff line number Diff line change @@ -44,3 +44,12 @@ output "cloudfront_custom_error_response" {
4444 description = " Preconfigured custom error response the CloudFront distribution should use."
4545 value = local. cloudfront_custom_error_response
4646}
47+
48+ # ####################
49+ # IAM role for Lambda
50+ # ####################
51+
52+ output "lambda_execution_role_arns" {
53+ description = " Lambda execution IAM Role ARNs"
54+ value = { for k , v in local . lambdas : k => aws_iam_role . lambda [k ]. arn }
55+ }
You can’t perform that action at this time.
0 commit comments