Skip to content

Commit 4b87e01

Browse files
Merge branch 'main' into atru/mcp-server-formatting
2 parents b519638 + c484b6d commit 4b87e01

File tree

4 files changed

+16
-3
lines changed

4 files changed

+16
-3
lines changed

content/terraform-docs-agents/v1.22.x/docs/cloud-docs/agents/agents.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ To start the agent with the official Docker image and connect it to an HCP Terra
4949
```shell-session
5050
export TFC_AGENT_TOKEN=your-token
5151
export TFC_AGENT_NAME=your-agent-name
52-
docker run -e TFC_AGENT_TOKEN -e TFC_AGENT_NAME hashicorp/tfc-agent:latest
52+
docker run --platform=linux/amd64 -e TFC_AGENT_TOKEN -e TFC_AGENT_NAME hashicorp/tfc-agent:latest
5353
```
5454

5555
Once complete, your agent and its status appear on the **Agents** page in the HCP Terraform UI. Workspaces can now use this agent pool for runs. Refer to [Configure Workspaces to Use the Agent](/terraform/cloud-docs/agents/agent-pools#configure-workspaces-to-use-the-agent) for details.

content/terraform-docs-agents/v1.22.x/docs/cloud-docs/agents/changelog.mdx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@ within each release are categorized into one or more of the following labels:
1818
Each version below corresponds to a release artifact available for download on
1919
the official [releases website](https://releases.hashicorp.com/tfc-agent/).
2020

21+
## 1.22.4 (06/11/2025)
22+
23+
BUG FIXES:
24+
25+
* Added a file system sync when extracting the terraform binary in order to avoid rare, unreported errors during execution (#1065)
26+
2127
## 1.22.3 (05/27/2025)
2228

2329
SECURITY:

content/terraform-docs-common/redirects.jsonc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@
209209
"permanent": true,
210210
},
211211
{
212-
"source": "/terraform/language/:version(v1\.(?:7|8|9|10|11|12|13)\.x)/settings/backends/configuration",
212+
"source": "/terraform/language/:version(v1\\.(?:7|8|9|10|11|12|13)\\.x)/settings/backends/configuration",
213213
"destination": "/terraform/language/backend",
214214
"permanent": true,
215215
},

docker-compose.yaml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ services:
88
ports:
99
- ${DEV_PORTAL_PORT}:${DEV_PORTAL_PORT}
1010
depends_on:
11-
- unified-docs-api
11+
unified-docs-api:
12+
condition: service_healthy
1213
environment:
1314
- MKTG_CONTENT_DOCS_API=https://content.hashicorp.com
1415
- UNIFIED_DOCS_PORT=${UNIFIED_DOCS_PORT}
@@ -26,3 +27,9 @@ services:
2627
- DEV_PORTAL_URL=http://dev-portal:${DEV_PORTAL_PORT}
2728
volumes:
2829
- ./content:/server/content
30+
healthcheck:
31+
test: ["CMD", "curl", "-f", "http://localhost:${UNIFIED_DOCS_PORT}"]
32+
interval: 60s
33+
timeout: 10s
34+
retries: 3
35+
start_period: 60s

0 commit comments

Comments
 (0)