Skip to content

Commit ecee0a4

Browse files
authored
Update: simplified server.json, updating other files for next release (#209)
* simplified server.json, updating other files for next release * updating golang version * updating go mod version * updating dockerfile
1 parent baa0b8e commit ecee0a4

File tree

8 files changed

+28
-685
lines changed

8 files changed

+28
-685
lines changed

.go-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.24.7
1+
1.25.1

.release/ci.hcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ project "terraform-mcp-server" {
88

99
# slack channel : feed-terraform-mcp-server-releases
1010
slack {
11-
notification_channel = "C08TEJWRXDX"
11+
notification_channel = "C09KWKM9HHB"
1212
}
1313

1414
github {

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## Unreleased
2+
13
## 0.3.2 (Oct 23, 2025)
24

35
FEATURES

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ RUN apk add --no-cache ca-certificates
1616

1717
# devbuild compiles the binary
1818
# -----------------------------------
19-
FROM golang:1.24.6-alpine@sha256:c8c5f95d64aa79b6547f3b626eb84b16a7ce18a139e3e9ca19a8c078b85ba80d AS devbuild
19+
FROM golang:1.25.1-alpine@sha256:b6ed3fd0452c0e9bcdef5597f29cc1418f61672e9d3a2f55bf02e7222c014abd AS devbuild
2020
ARG VERSION="dev"
2121
# Set the working directory
2222
WORKDIR /build

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ More about using MCP server tools in VS Code's [agent mode documentation](https:
8585
"--rm",
8686
"-e", "TFE_TOKEN=${input:tfe_token}",
8787
"-e", "TFE_ADDRESS=${input:tfe_address}",
88-
"hashicorp/terraform-mcp-server:0.3.0"
88+
"hashicorp/terraform-mcp-server:0.3.2"
8989
]
9090
}
9191
},
@@ -149,7 +149,7 @@ Optionally, you can add a similar example (i.e. without the mcp key) to a file c
149149
"--rm",
150150
"-e", "TFE_TOKEN=${input:tfe_token}",
151151
"-e", "TFE_ADDRESS=${input:tfe_address}",
152-
"hashicorp/terraform-mcp-server:0.3.0"
152+
"hashicorp/terraform-mcp-server:0.3.2"
153153
]
154154
}
155155
},
@@ -216,7 +216,7 @@ Add this to your Cursor config (`~/.cursor/mcp.json`) or via Settings → Cursor
216216
"--rm",
217217
"-e", "TFE_ADDRESS=<<PASTE_TFE_ADDRESS_HERE>>",
218218
"-e", "TFE_TOKEN=<<PASTE_TFE_TOKEN_HERE>>",
219-
"hashicorp/terraform-mcp-server:0.3.0"
219+
"hashicorp/terraform-mcp-server:0.3.2"
220220
]
221221
}
222222
}
@@ -269,7 +269,7 @@ More about using MCP server tools in Claude Desktop [user documentation](https:/
269269
"--rm",
270270
"-e", "TFE_ADDRESS=<<PASTE_TFE_ADDRESS_HERE>>",
271271
"-e", "TFE_TOKEN=<<PASTE_TFE_TOKEN_HERE>>",
272-
"hashicorp/terraform-mcp-server:0.3.0"
272+
"hashicorp/terraform-mcp-server:0.3.2"
273273
]
274274
}
275275
}

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/hashicorp/terraform-mcp-server
22

3-
go 1.24.0
3+
go 1.25.1
44

55
require (
66
github.com/hashicorp/go-cleanhttp v0.5.2

0 commit comments

Comments
 (0)