8000 feat: load variables from tfvars files by mtojek · Pull Request #11549 · coder/coder · GitHub
[go: up one dir, main page]

Skip to content

feat: load variables from tfvars files #11549

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 19 commits into from
Jan 12, 2024
Prev Previous commit
Next Next commit
Comment on tfvars
  • Loading branch information
mtojek committed Jan 12, 2024
commit 710f02597287329154b84888853a06efc64ed3a0
1 change: 1 addition & 0 deletions cli/templatecreate.go
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ func (r *RootCmd) templateCreate() *clibase.Cmd {
if err != nil {
return err
}
_, _ = fmt.Fprintln(inv.Stdout, "Auto-discovered Terraform tfvars files. Make sure to review and clean up any unused files.")
}

// Confirm upload of the directory.
Expand Down
1 change: 1 addition & 0 deletions cli/templatepush.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ func (r *RootCmd) templatePush() *clibase.Cmd {
if err != nil {
return err
}
_, _ = fmt.Fprintln(inv.Stdout, "Auto-discovered Terraform tfvars files. Make sure to review and clean up any unused files.")
}

resp, err := uploadFlags.upload(inv, client)
Expand Down
0