docs: rundeck: Remove extra backslashes

- it may not feel right, but that's currently how the builtin functions work -> double quotes are not escaped
 - cc @apparentlymart
This commit is contained in:
Radek Simko 2015-09-25 10:51:53 +01:00
parent 0d5a0bb45d
commit 4e29025820
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ it runs commands.
```
resource "rundeck_private_key" "anvils" {
path = "anvils/id_rsa"
key_material = "${file(\"/id_rsa\")}"
key_material = "${file("/id_rsa")}"
}
```