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
+4-5Lines changed: 4 additions & 5 deletions
Display the source diff
Display the rich diff
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.8
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
@@ -18,7 +18,6 @@ Doing serverless with Terraform? Check out [serverless.tf framework](https://ser
18
18
- AWS CloudWatch LogMetrics Alarms
19
19
- AWS GuardDuty Findings
20
20
21
-
22
21
## Usage
23
22
24
23
```hcl
@@ -38,11 +37,11 @@ module "notify_slack" {
38
37
39
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.
40
39
41
-
This module requires Python 3.8. 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`:
42
41
43
-
```
42
+
```Dockerfile
44
43
FROM hashicorp/tfc-agent:latest
45
-
RUN apt-get -y update && apt-get -y install python3.8 python3-pip
44
+
RUN apt-get -y update && apt-get -y install python3.11 python3-pip
0 commit comments