File tree Expand file tree Collapse file tree 13 files changed +69
-54
lines changed
simple-lambda-with-deploy-test Expand file tree Collapse file tree 13 files changed +69
-54
lines changed Original file line number Diff line number Diff line change 46
46
- uses : actions/checkout@v3
47
47
48
48
- name : Terraform Setup
49
- uses :
hashicorp/[email protected] .2
49
+ uses :
hashicorp/[email protected] .3
50
50
with :
51
51
terraform_version : 1.0.0
52
52
76
76
aws-region : us-west-2
77
77
78
78
- name : Terraform Setup
79
- uses :
hashicorp/[email protected] .2
79
+ uses :
hashicorp/[email protected] .3
80
80
with :
81
81
terraform_version : ${{ matrix.env.tf_version }}
82
82
Original file line number Diff line number Diff line change 186
186
same "printed page" as the copyright notice for easier
187
187
identification within third-party archives.
188
188
189
- Copyright [yyyy] [name of copyright owner]
189
+ Copyright 2022 Brigham Young University
190
190
191
191
Licensed under the Apache License, Version 2.0 (the "License");
192
192
you may not use this file except in compliance with the License.
198
198
distributed under the License is distributed on an "AS IS" BASIS,
199
199
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
200
See the License for the specific language governing permissions and
201
- limitations under the License.
201
+ limitations under the License.
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## v2.2.0
4
+ 11/18/2022 - support ARM 64 architecture
5
+ - allow pass through of architecture to support arm64. Default is x86_64.
6
+ - update terraform setup action
7
+ - update license
8
+
3
9
## v2.1.1
4
10
4/25/2022 - fixed race condition when resources depend on the function existing before their creation
5
11
- updated references to the lambda arn where it should be the function name
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ provider "aws" {
8
8
}
9
9
10
10
module "acs" {
11
- source = " github.com/byu-oit/terraform-aws-acs-info?ref=v3.4 .0"
11
+ source = " github.com/byu-oit/terraform-aws-acs-info?ref=v3.5 .0"
12
12
}
13
13
14
14
module "lambda_api" {
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ provider "aws" {
8
8
}
9
9
10
10
module "acs" {
11
- source = " github.com/byu-oit/terraform-aws-acs-info?ref=v3.4 .0"
11
+ source = " github.com/byu-oit/terraform-aws-acs-info?ref=v3.5 .0"
12
12
}
13
13
14
14
module "lambda_api" {
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ provider "aws" {
13
13
}
14
14
15
15
module "acs" {
16
- source = " github.com/byu-oit/terraform-aws-acs-info?ref=v3.4 .0"
16
+ source = " github.com/byu-oit/terraform-aws-acs-info?ref=v3.5 .0"
17
17
}
18
18
19
19
module "lambda_api" {
Original file line number Diff line number Diff line change @@ -4,12 +4,12 @@ provider "aws" {
4
4
}
5
5
6
6
module "acs" {
7
- source = " github.com/byu-oit/terraform-aws-acs-info?ref=v3.4 .0"
7
+ source = " github.com/byu-oit/terraform-aws-acs-info?ref=v3.5 .0"
8
8
}
9
9
10
10
module "lambda_api" {
11
11
# source = "../../"
12
- source = " github.com/byu-oit/terraform-aws-lambda-api?ref=v2.1.1 "
12
+ source = " github.com/byu-oit/terraform-aws-lambda-api?ref=v2.2.0 "
13
13
app_name = " my-docker-lambda"
14
14
image_uri = " my-image-from-my-ecr:latest"
15
15
hosted_zone = module. acs . route53_zone
Original file line number Diff line number Diff line change @@ -4,12 +4,12 @@ provider "aws" {
4
4
}
5
5
6
6
module "acs" {
7
- source = " github.com/byu-oit/terraform-aws-acs-info?ref=v3.4 .0"
7
+ source = " github.com/byu-oit/terraform-aws-acs-info?ref=v3.5 .0"
8
8
}
9
9
10
10
module "lambda_api" {
11
11
# source = "../../"
12
- source = " github.com/byu-oit/terraform-aws-lambda-api?ref=v2.1.1 "
12
+ source = " github.com/byu-oit/terraform-aws-lambda-api?ref=v2.2.0 "
13
13
app_name = " my-lambda-dev"
14
14
zip_filename = " ./src/lambda.zip"
15
15
zip_handler = " index.handler"
Original file line number Diff line number Diff line change @@ -4,12 +4,12 @@ provider "aws" {
4
4
}
5
5
6
6
module "acs" {
7
- source = " github.com/byu-oit/terraform-aws-acs-info?ref=v3.4 .0"
7
+ source = " github.com/byu-oit/terraform-aws-acs-info?ref=v3.5 .0"
8
8
}
9
9
10
10
module "lambda_api" {
11
11
# source = "../../"
12
- source = " github.com/byu-oit/terraform-aws-lambda-api?ref=v2.1.1 "
12
+ source = " github.com/byu-oit/terraform-aws-lambda-api?ref=v2.2.0 "
13
13
app_name = " my-lambda-dev"
14
14
zip_filename = " ./src/lambda.zip"
15
15
zip_handler = " index.handler"
You can’t perform that action at this time.
0 commit comments