From 4e1c0cbdaecc1cad11a9540b4270fdc6108aa7ec Mon Sep 17 00:00:00 2001 From: Jamie White Date: Thu, 23 Oct 2025 14:37:18 +0200 Subject: [PATCH] =?UTF-8?q?Fix=20tiny=20typo=20in=20=E2=80=9CDesign=20a=20?= =?UTF-8?q?Stack=E2=80=9D=20page?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- content/terraform/v1.13.x/docs/language/stacks/design.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/terraform/v1.13.x/docs/language/stacks/design.mdx b/content/terraform/v1.13.x/docs/language/stacks/design.mdx index ef92aebc4..c466a339e 100644 --- a/content/terraform/v1.13.x/docs/language/stacks/design.mdx +++ b/content/terraform/v1.13.x/docs/language/stacks/design.mdx @@ -27,7 +27,7 @@ Before writing your component configuration, we recommend assessing your current Each Stack should represent a single system or application with a shared lifecycle. Start by analyzing your current infrastructure and identifying the components HCP Terraform should manage together. Components are typically groups of related resources, such as an application’s backend, frontend, or database layer, deployed and scaled together. -We recommend structuring your Stacks along technical boundaries to keep them modular and manageable. For example, you can create a dedicated Stack for shared services, such as networking infrastructure for VPCs, subnets, or routing tables, and separate Stacks for application components that consume those shared services. This separation lets you to manage shared services independently while passing information between Stacks. For more details, refer to [Pass data from one Stack to another](/terraform/language/stacks/deploy/pass-data). +We recommend structuring your Stacks along technical boundaries to keep them modular and manageable. For example, you can create a dedicated Stack for shared services, such as networking infrastructure for VPCs, subnets, or routing tables, and separate Stacks for application components that consume those shared services. This separation lets you manage shared services independently while passing information between Stacks. For more details, refer to [Pass data from one Stack to another](/terraform/language/stacks/deploy/pass-data). ### Sketch out your configuration