Update taint.html.markdown

Single qoute cause an `Invalid character` error.
This commit is contained in:
Chris Carpenter 2020-05-28 11:55:10 -05:00 committed by Christopher Carpenter
parent 01f91316da
commit 8f4f181151
No known key found for this signature in database
GPG Key ID: 809823C804F1E074
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ It is necessary to wrap the resource in single quotes and escape the quotes.
This example will taint a single resource created with for_each:
```
$ terraform taint 'module.route_tables.azurerm_route_table.rt[\"DefaultSubnet\"]'
$ terraform taint "module.route_tables.azurerm_route_table.rt[\"DefaultSubnet\"]"
The resource module.route_tables.azurerm_route_table.rt["DefaultSubnet"] in the module root has been marked as tainted.
```