From 36aa2e6ec11127c2d0641180d5a880508a6cbade Mon Sep 17 00:00:00 2001 From: Steven Collins Date: Thu, 29 Sep 2022 15:21:15 -0500 Subject: [PATCH] Fix API key environment variable name The environment variable name is case sensitive. `IC_API_Key` does not work. --- provision-vsi-vpc.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/provision-vsi-vpc.md b/provision-vsi-vpc.md index f5483b1..82a2726 100644 --- a/provision-vsi-vpc.md +++ b/provision-vsi-vpc.md @@ -73,11 +73,11 @@ This tutorial is intended for system administrators who want to learn how to pro ``` {: codeblock} -3. From your Terraform directory, export `IC_API_Key` variable to set environment variable in your local machine. For more information, about how to setup the environment variables? see [Using environment variable](/docs/ibm-cloud-provider-for-terraform?topic=ibm-cloud-provider-for-terraform-provider-reference#env-vars). +3. From your Terraform directory, export `IC_API_KEY` variable to set environment variable in your local machine. For more information, about how to setup the environment variables? see [Using environment variable](/docs/ibm-cloud-provider-for-terraform?topic=ibm-cloud-provider-for-terraform-provider-reference#env-vars). **Example** - `export IC_API_Key=""` + `export IC_API_KEY=""` 4. In the Terraform directory, create a Terraform configuration file and name it `vpc.tf`. The configuration file includes the following definition blocks: