From ea7e84aef02b4677573b304553fa90c759d06c2f Mon Sep 17 00:00:00 2001 From: Ansgar Mertens Date: Mon, 4 Mar 2024 09:28:30 +0100 Subject: [PATCH] Apply suggestions from code review Co-authored-by: trujillo-adam <47586768+trujillo-adam@users.noreply.github.com> --- website/docs/cdktf/concepts/stacks.mdx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/website/docs/cdktf/concepts/stacks.mdx b/website/docs/cdktf/concepts/stacks.mdx index 3ebb87afe3..6ac85a76e6 100644 --- a/website/docs/cdktf/concepts/stacks.mdx +++ b/website/docs/cdktf/concepts/stacks.mdx @@ -7,10 +7,9 @@ description: >- # Stacks -> **Note**: CDKTF stacks differ from [Terraform stacks](https://www.hashicorp.com/blog/terraform-stacks-explained). Terraform stacks are a configuration layer that simplifies provisioning and managing resources at scale by controlling cross-configuration dependencies between Terraform modules. A stack represents a collection of infrastructure that CDK for Terraform (CDKTF) synthesizes as a dedicated Terraform configuration. Stacks allow you to separate the state management for multiple environments within an application. - +> **Note**: Stacks in CDKTF are different from the Terraform stacks concept announced at HashiConf 2023. Terraform stacks are a configuration layer that simplifies provisioning and managing resources at scale by controlling cross-configuration dependencies between Terraform modules. Refer to [Terraform stacks, explained](https://www.hashicorp.com/blog/terraform-stacks-explained) in the HashiCorp blog for additional information. > **Hands-on:** Try the [Deploy Applications with CDK for Terraform](/terraform/tutorials/cdktf/cdktf-applications?utm_source=WEBSITE&utm_medium=WEB_IO&utm_offer=ARTICLE_PAGE&utm_content=DOCS) tutorial. ## Scope