Skip to content

Commit

Permalink
fixed arch var
Browse files Browse the repository at this point in the history
  • Loading branch information
aahel committed Feb 23, 2024
1 parent 841a59f commit 9a41c2f
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions modules/lambda-registrator/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ variable "enable_auto_publish_ecr_image" {
}

variable "arch" {
type = string
default = "x86_64"
description = "Lambda Architecture"
}
1 change: 1 addition & 0 deletions test/acceptance/setup-terraform/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ variable "region" {
}

variable "arch" {
type = string
default = "amd64"
description = "Build Architecture"
}
1 change: 1 addition & 0 deletions test/acceptance/tests/lambda-to-mesh/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ variable "layers" {
}

variable "arch" {
type = string
default = "x86_64"
description = "Lambda Architecture"
}
1 change: 1 addition & 0 deletions test/acceptance/tests/lambda/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ variable "layers" {
}

variable "arch" {
type = string
default = "x86_64"
description = "Lambda Architecture"
}
1 change: 1 addition & 0 deletions test/acceptance/tests/mesh-to-lambda/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ variable "region" {
}

variable "arch" {
type = string
default = "x86_64"
description = "Lambda Architecture"
}
1 change: 1 addition & 0 deletions test/acceptance/tests/setup/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ variable "private_ecr_repo_name" {
}

variable "arch" {
type = string
default = "x86_64"
description = "Lambda Architecture"
}

0 comments on commit 9a41c2f

Please sign in to comment.