Skip to content

Commit

Permalink
Fix Terraform filename path (#662)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben8t authored Nov 30, 2023
1 parent 13d22f1 commit 39d8f9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/docs/05.developer-guide/namespace-files.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ Here is a simple example showing how you can synchronize an entire directory of
resource "kestra_namespace_file" "prod_scripts" {
for_each = fileset(path.module, "src/*")
namespace = "prod"
filename = each.value
filename = "/${each.value}"
content = file(each.value)
}
```
Expand Down

0 comments on commit 39d8f9a

Please sign in to comment.