From 34d07c50501af8605e1cb6871495342ad060230e Mon Sep 17 00:00:00 2001 From: psiddharthdesign <107192927+psiddharthdesign@users.noreply.github.com> Date: Mon, 29 Jul 2024 13:11:00 +0530 Subject: [PATCH] tfsvars remove alert --- .../(specific-project-pages)/TFVarsDetails.tsx | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/app/(dynamic-pages)/(authenticated-pages)/(application-pages)/project/[projectSlug]/(specific-project-pages)/TFVarsDetails.tsx b/src/app/(dynamic-pages)/(authenticated-pages)/(application-pages)/project/[projectSlug]/(specific-project-pages)/TFVarsDetails.tsx index 16b4bbcb..809d430a 100644 --- a/src/app/(dynamic-pages)/(authenticated-pages)/(application-pages)/project/[projectSlug]/(specific-project-pages)/TFVarsDetails.tsx +++ b/src/app/(dynamic-pages)/(authenticated-pages)/(application-pages)/project/[projectSlug]/(specific-project-pages)/TFVarsDetails.tsx @@ -1,5 +1,6 @@ 'use client' +import { Alert, AlertDescription, AlertTitle } from "@/components/ui/alert"; import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"; import { EnvVar } from "@/types/userTypes"; import { motion } from "framer-motion"; @@ -38,6 +39,12 @@ export default function TFVarsDetails({ tfvarsdata, onUpdate, onDelete, onBulkUp onBulkUpdate={onBulkUpdate} /> + + PROTIP + + If you want to use these env variables directly in your terraform variables prefix them with TF_VAR_xxx + + );