Skip to content

Commit

Permalink
Downgrade to NodeJS 16.x
Browse files Browse the repository at this point in the history
  • Loading branch information
kaklakariada committed Mar 8, 2024
1 parent 352a8c0 commit 6dad68d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion doc/changes/changes_1.0.4.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Code name: Fix deployment

## Summary

This release updates the NodeJS version for Lambdas used by the CloudFormation template during deployment to 20.x.
This release updates the NodeJS version for Lambdas used by the CloudFormation template during deployment to 16.x.

Starting with this version terraform-aws-exasol is tested with Terraform 1.5.7. We recommend using the same version.

Expand Down
8 changes: 4 additions & 4 deletions scripts/cloudformation_template_v1.0.4.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1579,7 +1579,7 @@ Resources:
- 'return failed({Error: ''In-place updates not supported.''});'
- '}'
- '};'
Runtime: nodejs20.x
Runtime: nodejs16.x
Timeout: '300'
MasterKey:
Type: AWS::KMS::Key
Expand Down Expand Up @@ -1664,7 +1664,7 @@ Resources:
- ' });'
- ' });'
- '};'
Runtime: nodejs20.x
Runtime: nodejs16.x
Timeout: '300'
EncryptCredentials:
Type: Custom::EncryptCredentials
Expand Down Expand Up @@ -1716,7 +1716,7 @@ Resources:
- ' }'
- ' });'
- '};'
Runtime: nodejs20.x
Runtime: nodejs16.x
Timeout: '300'
GetSubnetCidr:
Type: Custom::GetSubnetCidr
Expand Down Expand Up @@ -1757,7 +1757,7 @@ Resources:
DefaultGateWay, LicenseServerIp: LicenseServerIp, FirstDataNodeIp: FirstDataNodeIp
});'
- '};'
Runtime: nodejs20.x
Runtime: nodejs16.x
Timeout: '300'
IpCalc:
Type: Custom::IpCalc
Expand Down
2 changes: 1 addition & 1 deletion test/simple_exasol_setup/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -148,4 +148,4 @@ module "exasol" {

output "datanode_ip" {
value = module.exasol.first_datanode_ip
}
}
2 changes: 1 addition & 1 deletion test/simple_exasol_setup/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ variable "exasol_sys_password" {

variable "aws_profile" {
default = "default"
}
}

0 comments on commit 6dad68d

Please sign in to comment.