From 8f4f1811514143fcc1af1f12932cb7f3b1561b6a Mon Sep 17 00:00:00 2001 From: Chris Carpenter Date: Thu, 28 May 2020 11:55:10 -0500 Subject: [PATCH] Update taint.html.markdown Single qoute cause an `Invalid character` error. --- website/docs/commands/taint.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/commands/taint.html.markdown b/website/docs/commands/taint.html.markdown index a948fd1f7..8086ffefc 100644 --- a/website/docs/commands/taint.html.markdown +++ b/website/docs/commands/taint.html.markdown @@ -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. ```