Skip to content

Commit 3447e09

Browse files
committed
Almost done
1 parent 644ba3b commit 3447e09

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

content/terraform/v1.13.x/docs/language/stacks/component/declare-providers.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ component "s3" {
7777

7878
After configuring your provider, you can use the Terraform CLI to generate a provider lock file:
7979

80-
```shell
80+
```shell-session
8181
$ terraform stacks init
8282
```
8383

@@ -155,7 +155,7 @@ A Stack cannot run without a lock file for its providers. After defining your pr
155155
$ terraform stacks init
156156
```
157157

158-
The `terraform stacks init` command uses the `required_providers` block from your configuration to download the listed providers and compute the provider lock hashes. If you update your Stack’s providers, run `terraform stacks init -upgrade` command to update your Stack’s lock file locally. For more details, refer to the [`terraform stacks` commands](/terraform/cli/commands/stacks).
158+
The `terraform stacks init` command uses the `required_providers` block from your configuration to download the listed providers and compute the provider lock hashes. If you update your Stack’s providers, run the `terraform stacks init -upgrade` command to update your Stack’s lock file locally. For more details, refer to the [`terraform stacks` commands](/terraform/cli/commands/stacks).
159159

160160
## Next steps
161161

content/terraform/v1.13.x/docs/language/stacks/index.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ Terraform Stacks enable you to split your Terraform configuration into component
1919

2020
Each deployment in a Stack represents a group of components that work together, such as a development and production environment. The configuration for each Stack is identical across deployments, and you can customize each deployment with input variables. You can then use HCP Terraform to roll out changes to each of your deployments and keep track of the changes across your environments.
2121

22+
If you participated in the Stacks beta, you need to update your configurations to be compatible with the GA release. For details, refer to [Update for general availability](/terraform/language/stacks/update-GA).
23+
2224
## Workflow
2325

2426
Begin creating Stack by making a component configuration file, ending in `tfcomponent.hcl`, and filling it with `component` blocks. Each `component` block includes a Terraform module as its source, and you can configure each `component` using the `inputs` argument. All of your Stack components share a lifecycle, which you repeatedly deploy together using HCP Terraform.

content/terraform/v1.13.x/docs/language/stacks/update-GA.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
2-
page_title: Stack configuration files for Terraform
2+
page_title: Update from beta to general availability for Terraform Stacks
33
description: |-
44
Learn about the new general release of Stacks and how to migrate from the beta to the general release.
55
---
66

7-
# Move from Stacks beta to general availability
7+
# Update from beta to general availability
88

99
The GA release of Stacks introduces several new features and improvements.
1010

0 commit comments

Comments
 (0)