add data-loss warning to SIGINT handler in apply
Warning user about data loss after receiving an interrupt.
This commit is contained in:
parent
7a07c4e99c
commit
6ef7c83ec5
|
@ -201,7 +201,7 @@ func (c *ApplyCommand) Run(args []string) int {
|
||||||
ctxCancel()
|
ctxCancel()
|
||||||
|
|
||||||
// Notify the user
|
// Notify the user
|
||||||
c.Ui.Output("Interrupt received. Gracefully shutting down...")
|
c.Ui.Output(outputInterrupt)
|
||||||
|
|
||||||
// Still get the result, since there is still one
|
// Still get the result, since there is still one
|
||||||
select {
|
select {
|
||||||
|
@ -418,3 +418,7 @@ func outputsAsString(state *terraform.State, modPath []string, schema []*config.
|
||||||
|
|
||||||
return strings.TrimSpace(outputBuf.String())
|
return strings.TrimSpace(outputBuf.String())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const outputInterrupt = `Interrupt received.
|
||||||
|
Please wait for Terraform to exit or data loss may occur.
|
||||||
|
Gracefully shutting down...`
|
||||||
|
|
Loading…
Reference in New Issue