Merge pull request #22626 from mixmatch/patch-1

Update output
This commit is contained in:
Pam Selle 2019-10-18 10:21:57 -04:00 committed by GitHub
commit 91b5343d2f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -70,7 +70,7 @@ This example will taint a single resource:
```
$ terraform taint aws_security_group.allow_all
The resource aws_security_group.allow_all in the module root has been marked as tainted!
The resource aws_security_group.allow_all in the module root has been marked as tainted.
```
## Example: Tainting a Resource within a Module
@ -79,5 +79,5 @@ This example will only taint a resource within a module:
```
$ terraform taint "module.couchbase.aws_instance.cb_node[9]"
Resource instance module.couchbase.aws_instance.cb_node[9] has been marked as tainted!
Resource instance module.couchbase.aws_instance.cb_node[9] has been marked as tainted.
```