Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -66,13 +66,13 @@ Stacks live alongside workspaces in an HCP Terraform project. To create a new St
1. After running the command, you can view your new Stack in the HCP Terraform UI, or by running the `terraform stacks list` command:

```shell-session
$ terraform stacks list -organization <ORGANIZATION_NAME> -project <PROJECT_NAME>
$ terraform stacks list -organization-name <ORGANIZATION_NAME> -project-name <PROJECT_NAME>
```

1. After creating your Stack, you can push up your Stack component and deployment configuration files to create a new configuration version. Use the `terraform stacks configuration upload` command to manually upload your configuration files:

```shell-session
$ terraform stacks configuration upload -organization <ORGANIZATION_NAME> -project <PROJECT_NAME> -stack-name <STACK_NAME>
$ terraform stacks configuration upload -organization-name <ORGANIZATION_NAME> -project-name <PROJECT_NAME> -stack-name <STACK_NAME>
```

The Terraform CLI uploads the configuration files, and returns a new configuration version ID and sequence number:
Expand All @@ -92,7 +92,7 @@ Stacks live alongside workspaces in an HCP Terraform project. To create a new St
After uploading your configuration, you can watch your Stack's configuration roll out using `terraform stacks configuration watch` to review a list of the deployment groups in your configuration:

```shell-session
$ terraform stacks configuration watch -organization <ORGANIZATION_NAME> -project <PROJECT_NAME>
$ terraform stacks configuration watch -organization-name <ORGANIZATION_NAME> -project-name <PROJECT_NAME>
```

The Terraform CLI then displays the status of each deployment group in your Stack:
Expand Down
Loading