Skip to content
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

DXCDT-543: Refining tf generate output instructions #842

Merged
merged 10 commits into from
Sep 14, 2023
Prev Previous commit
Next Next commit
Update internal/cli/terraform.go
Co-authored-by: Sergiu Ghitea <[email protected]>
willvedd and sergiught authored Sep 13, 2023
commit 67539684b7d1907136c2f5923db2c27831ce10c0
2 changes: 1 addition & 1 deletion internal/cli/terraform.go
Original file line number Diff line number Diff line change
@@ -180,7 +180,7 @@ func generateTerraformCmdRun(cli *cli, inputs *terraformInputs) func(cmd *cobra.
cli.renderer.Warnf("Terraform resource config generated successfully but error with terraform plan.\n\n")
willvedd marked this conversation as resolved.
Show resolved Hide resolved
cli.renderer.Warnf("Run " + ansi.Cyan(cdInstructions+"./terraform plan") + " to troubleshoot\n\n")
cli.renderer.Warnf("Once the plan succeeds, run " + ansi.Cyan("./terraform apply") + " to complete import.\n\n")
willvedd marked this conversation as resolved.
Show resolved Hide resolved
cli.renderer.Infof("The terraform binary and auth0_import.tf files can be deleted.\n")
cli.renderer.Infof("The terraform binary and auth0_import.tf files can be deleted afterwards.\n")
return nil
}