Skip to content

Commit f6d6301

Browse files
authored
Pin terraform version python tf scripts (#1055)
1 parent 312c244 commit f6d6301

File tree

2 files changed

+2
-1
lines changed
  • python
    • integration-tests/aws-sdk/wrapper
    • sample-apps/aws-sdk/deploy/wrapper

2 files changed

+2
-1
lines changed

python/integration-tests/aws-sdk/wrapper/main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ resource "aws_lambda_layer_version" "collector_layer" {
2121

2222
module "test-function" {
2323
source = "terraform-aws-modules/lambda/aws"
24-
24+
version = "7.19.0"
2525
architectures = compact([var.architecture])
2626
function_name = var.function_name
2727
handler = "lambda_function.lambda_handler"

python/sample-apps/aws-sdk/deploy/wrapper/main.tf

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ locals {
99

1010
module "test-function" {
1111
source = "terraform-aws-modules/lambda/aws"
12+
version = "7.19.0"
1213

1314
architectures = compact([var.architecture])
1415
function_name = var.function_name

0 commit comments

Comments
 (0)