Skip to content

Commit

Permalink
Update doc
Browse files Browse the repository at this point in the history
  • Loading branch information
tenstad committed Aug 29, 2021
1 parent 94345e7 commit 0001084
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/resources/file.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ resource "remote_file" "bashrc" {
}
path = "/home/john/.bashrc"
content = "alias ll='ls -alF'"
content = file("${path.module}/.bashrc")
permissions = "0644"
}
Expand Down
2 changes: 1 addition & 1 deletion examples/resources/remote_file/resource.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ resource "remote_file" "bashrc" {
}

path = "/home/john/.bashrc"
content = "alias ll='ls -alF'"
content = file("${path.module}/.bashrc")
permissions = "0644"
}

Expand Down

0 comments on commit 0001084

Please sign in to comment.