Skip to content

Commit

Permalink
Rename TFVars to Variables
Browse files Browse the repository at this point in the history
  • Loading branch information
ZIJ committed Aug 2, 2024
1 parent 0d40a4e commit 3de3bcb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ export default function TFVarsDetails({ projectId, initialEnvVars }: TFVarsDetai
>
<Card className="w-full">
<CardHeader>
<CardTitle>Terraform Variables</CardTitle>
<CardDescription>Manage Terraform variables for project</CardDescription>
<CardTitle>Variables</CardTitle>
<CardDescription>Manage variables for project. They will be exposed in the job as environment variables.</CardDescription>
</CardHeader>
<CardContent>
<TFVarTable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ export async function generateMetadata({
const project = await getSlimProjectBySlug(projectSlug);

return {
title: `TFVars | ${project.name}`,
description: `Manage Terraform variables for ${project.name}`,
title: `Variables | ${project.name}`,
description: `Manage variables for ${project.name}`,
};
}

Expand Down

0 comments on commit 3de3bcb

Please sign in to comment.