From 8927a6740c626c8624cab2aa8d519007822b77e3 Mon Sep 17 00:00:00 2001 From: Anton Ivarsson Date: Wed, 8 Apr 2026 11:06:15 +0200 Subject: [PATCH] fix: replace shell export commands with correct terraform.tfvars syntax --- integrations/terraform.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/integrations/terraform.md b/integrations/terraform.md index de1ec3b585..bc44c65cd1 100644 --- a/integrations/terraform.md +++ b/integrations/terraform.md @@ -78,9 +78,9 @@ You use the [$COMPANY Terraform provider][terraform-provider] to manage $SERVICE 1. Create a `terraform.tfvars` file in the same directory as your `main.tf` to pass in the variable values: ```hcl - export TF_VAR_ts_project_id="" - export TF_VAR_ts_access_key="" - export TF_VAR_ts_secret_key="" + ts_project_id = "" + ts_access_key = "" + ts_secret_key = "" ``` 1. **Add your resources**