Skip to content

Commit

Permalink
Merge pull request #756 from hashicorp/update-tfstate-name
Browse files Browse the repository at this point in the history
fix(cli): update hint for tfstate file
  • Loading branch information
ansgarm committed Jun 29, 2021
2 parents 2050954 + c9f7ad4 commit 8a93ffe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cdktf-cli/bin/cmds/init.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ class Command implements yargs.CommandModule {
token = await terraformLogin.askToLogin();
} else {
console.log(chalkColour`{yellow Note: By supplying '--local' option you have chosen local storage mode for storing the state of your stack.
This means that your Terraform state file will be stored locally on disk in a file 'terraform.tfstate' in the root of your project.}`);
This means that your Terraform state file will be stored locally on disk in a file 'terraform.<STACK NAME>.tfstate' in the root of your project.}`);
}

// Check if template was specified by the user
Expand Down

0 comments on commit 8a93ffe

Please sign in to comment.