Skip to content

Commit 7884fb8

Browse files
author
Martin Atkins
committed
Corrected example on rundeck provider index page.
An earlier version of the provider implementation accepted key_material_file instead of key_material. This was updated in the resource-specific docs but not in this provider-wide example.
1 parent e7f33bf commit 7884fb8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

website/source/docs/providers/rundeck/index.html.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,6 @@ resource "rundeck_public_key" "anvils" {
7070
7171
resource "rundeck_private_key" "anvils" {
7272
path = "anvils/id_rsa"
73-
key_material_file = "${path.module}/id_rsa.pub"
73+
key_material = "${file(\"id_rsa.pub\")}"
7474
}
7575
```

0 commit comments

Comments
 (0)