diff --git a/README.md b/README.md index 87fd994..a9e8b31 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Doing serverless with Terraform? Check out [serverless.tf framework](https://ser ## Supported Features -- AWS Lambda runtime Python 3.11 +- AWS Lambda runtime Python 3.12 - Create new SNS topic or use existing one - Support plaintext and encrypted version of Slack webhook URL - Most of Slack message options are customizable @@ -37,11 +37,11 @@ module "notify_slack" { [Terraform Cloud Agents](https://www.terraform.io/docs/cloud/workspaces/agent.html) are a paid feature, available as part of the Terraform Cloud for Business upgrade package. -This module requires Python 3.11. You can customize [tfc-agent](https://hub.docker.com/r/hashicorp/tfc-agent) to include Python using this sample `Dockerfile`: +This module requires Python 3.12. You can customize [tfc-agent](https://hub.docker.com/r/hashicorp/tfc-agent) to include Python using this sample `Dockerfile`: ```Dockerfile FROM hashicorp/tfc-agent:latest -RUN apt-get -y update && apt-get -y install python3.11 python3-pip +RUN apt-get -y update && apt-get -y install python3.12 python3-pip ENTRYPOINT ["/bin/tfc-agent"] ```