From 32daeec29d60c04ace963f3c11b71bab2601abad Mon Sep 17 00:00:00 2001 From: Nathan Dataguake Basanese <5750764+v6@users.noreply.github.com> Date: Wed, 20 Mar 2019 16:15:30 -0700 Subject: [PATCH] website: clean up `terraform destroy` output example (#20099) --- website/intro/getting-started/destroy.html.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/intro/getting-started/destroy.html.md b/website/intro/getting-started/destroy.html.md index 010bf5347..643b543b0 100644 --- a/website/intro/getting-started/destroy.html.md +++ b/website/intro/getting-started/destroy.html.md @@ -28,7 +28,7 @@ been removed from the configuration. $ terraform destroy # ... -- aws_instance.example + - aws_instance.example ``` The `-` prefix indicates that the instance will be destroyed. As with apply, @@ -41,7 +41,7 @@ Answer `yes` to execute this plan and destroy the infrastructure: # ... aws_instance.example: Destroying... -Apply complete! Resources: 0 added, 0 changed, 1 destroyed. +Destroy complete! Resources: 1 destroyed. # ... ```