Skip to content

Commit 181a776

Browse files
committed
Start Sarah feedback
1 parent 03a3460 commit 181a776

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

content/terraform/v1.13.x/docs/language/block/stack/deploy/store.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,11 +128,11 @@ The following examples demonstrate common use cases for `store` blocks.
128128

129129
### Define a store and access variables
130130

131-
The following example defines a `varset` store named `api_keys` that accesses a variable set using its external ID:
131+
The following example defines a `varset` store named `api_keys` that accesses a variable set named `api_keys_default_project`:
132132

133133
```hcl
134134
store "varset" "api_keys" {
135-
id = "varset-abc123"
135+
name = "api_keys_default_project"
136136
category = "terraform"
137137
}
138138

content/terraform/v1.13.x/docs/language/stacks/deploy/config.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,13 +85,13 @@ Use the following blocks to set up authentication for your deployment's provider
8585
- The `store` block lets you reference values in an HCP Terraform [variable set](/terraform/cloud-docs/workspaces/variables/managing-variables#variable-sets).
8686
- The `identity_token` block generates a JSON Web Token (JWT) for OIDC authentication.
8787

88-
The `store` block lets you access a variable set from your deployment configuration. In the following example, the `api_keys` store fetches API keys from a variable set with the ID `varset-abc123456`:
88+
The `store` block lets you access a variable set from your deployment configuration. In the following example, the `api_keys` store fetches API keys from a variable set named `api_keys_default_project`:
8989

9090
<CodeBlockConfig filename="deployments.tfdeploy.hcl">
9191

9292
```hcl
9393
store "varset" "api_keys" {
94-
id = "varset-abc123456"
94+
name = "api_keys_default_project"
9595
category = "terraform"
9696
}
9797

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Stacks replace Terraform's traditional root module structure with a new componen
1313

1414
## Background
1515

16-
Stacks are an alternative way to organize your infrastructure and fundamentally differ from HCP Terraform workspaces. Stacks can live exist alongside workspaces in the same project, learn more about the differences and use cases of [Stacks and workspaces](/terraform/cloud-docs/use-cases).
16+
Stacks are an alternative way to organize your infrastructure and fundamentally differ from HCP Terraform workspaces. Stacks can exist alongside workspaces in the same project, learn more about the differences and use cases of [Stacks and workspaces](/terraform/cloud-docs/use-cases).
1717

1818
Terraform Stacks enable you to split your Terraform configuration into components and then deploy and manage those components across multiple environments. You can manage the lifecycle of each deployment separately, roll out configuration changes across your deployments, and manage your Stack as a unit in HCP Terraform. When writing a Stack, you codify the entire behavior of your infrastructure lifecycle within version-controlled configuration files.
1919

0 commit comments

Comments
 (0)