Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update lambda.tf #50

Merged
merged 6 commits into from
Dec 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ on: [push, pull_request]
jobs:
test:
name: Terraform Checks
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
steps:
- name: Check out code
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Setup
uses: hashicorp/[email protected]
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [5.0.2] - 2023-12-15
### Added
- Updating `beekeeper_slack_notifier` Lambda function in `lambda.tf` that is currently using the deprecated Python 3.7 runtime to the Python 3.9 runtime

### Changed
- Updated hosted runner from the deprecated `ubuntu-18.04` to `ubuntu-22.04` to fix failing GitHub Actions

## [5.0.1] - 2023-12-05
### Added
- Added `HADOOP_USER_NAME` environment variable and set it to `beekeeper`
Expand Down
2 changes: 1 addition & 1 deletion lambda.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ resource "aws_lambda_function" "beekeeper_slack_notifier" {
function_name = "${local.instance_alias}-slack-notifier"
role = aws_iam_role.beekeeper_slack_notifier_lambda[count.index].arn
handler = "slack-notifier.lambda_handler"
runtime = "python3.7"
runtime = "python3.9"
timeout = 20
tags = var.beekeeper_tags

Expand Down
Loading