Skip to content

Commit 43f64a3

Browse files
authored
Merge pull request #36 from byu-oit/arm
feat: allow passing through lambda architectures
2 parents a4b6e10 + 4cc7b0a commit 43f64a3

File tree

13 files changed

+69
-54
lines changed

13 files changed

+69
-54
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
- uses: actions/checkout@v3
4747

4848
- name: Terraform Setup
49-
uses: hashicorp/[email protected].2
49+
uses: hashicorp/[email protected].3
5050
with:
5151
terraform_version: 1.0.0
5252

@@ -76,7 +76,7 @@ jobs:
7676
aws-region: us-west-2
7777

7878
- name: Terraform Setup
79-
uses: hashicorp/[email protected].2
79+
uses: hashicorp/[email protected].3
8080
with:
8181
terraform_version: ${{ matrix.env.tf_version }}
8282

LICENSE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright [yyyy] [name of copyright owner]
189+
Copyright 2022 Brigham Young University
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.
@@ -198,4 +198,4 @@
198198
distributed under the License is distributed on an "AS IS" BASIS,
199199
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200200
See the License for the specific language governing permissions and
201-
limitations under the License.
201+
limitations under the License.

README.md

Lines changed: 40 additions & 39 deletions
Large diffs are not rendered by default.

changelog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

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+
39
## v2.1.1
410
4/25/2022 - fixed race condition when resources depend on the function existing before their creation
511
- updated references to the lambda arn where it should be the function name

examples/ci-0_13/ci.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ provider "aws" {
88
}
99

1010
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"
1212
}
1313

1414
module "lambda_api" {

examples/ci-0_14/ci.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ provider "aws" {
88
}
99

1010
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"
1212
}
1313

1414
module "lambda_api" {

examples/ci-1/ci.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ provider "aws" {
1313
}
1414

1515
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"
1717
}
1818

1919
module "lambda_api" {

examples/docker-lambda/docker.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ provider "aws" {
44
}
55

66
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"
88
}
99

1010
module "lambda_api" {
1111
# 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"
1313
app_name = "my-docker-lambda"
1414
image_uri = "my-image-from-my-ecr:latest"
1515
hosted_zone = module.acs.route53_zone

examples/no-codedeploy/example.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ provider "aws" {
44
}
55

66
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"
88
}
99

1010
module "lambda_api" {
1111
# 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"
1313
app_name = "my-lambda-dev"
1414
zip_filename = "./src/lambda.zip"
1515
zip_handler = "index.handler"

examples/simple-lambda-in-vpc/example.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ provider "aws" {
44
}
55

66
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"
88
}
99

1010
module "lambda_api" {
1111
# 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"
1313
app_name = "my-lambda-dev"
1414
zip_filename = "./src/lambda.zip"
1515
zip_handler = "index.handler"

0 commit comments

Comments
 (0)