You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ Doing serverless with Terraform? Check out [serverless.tf framework](https://ser
8
8
9
9
## Supported Features
10
10
11
-
- AWS Lambda runtime Python 3.12
11
+
- AWS Lambda runtime Python 3.11
12
12
- Create new SNS topic or use existing one
13
13
- Support plaintext and encrypted version of Slack webhook URL
14
14
- Most of Slack message options are customizable
@@ -37,11 +37,11 @@ module "notify_slack" {
37
37
38
38
[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.
39
39
40
-
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`:
40
+
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`:
41
41
42
42
```Dockerfile
43
43
FROM hashicorp/tfc-agent:latest
44
-
RUN apt-get -y update && apt-get -y install python3.12 python3-pip
44
+
RUN apt-get -y update && apt-get -y install python3.11 python3-pip
0 commit comments