Skip to content

Commit

Permalink
Updated basic-test
Browse files Browse the repository at this point in the history
  • Loading branch information
denis256 committed Oct 7, 2024
1 parent c677ad1 commit 19dcdc1
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/basic-test.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: 'Terragrunt GitHub Action Basic Test'
name: 'basic-test'
on:
workflow_dispatch:

env:
tofu_version: '1.8.1'
tg_version: '0.67.0'
working_dir: 'run-all'
working_dir: 'basic-test'

jobs:
checks:
Expand Down
9 changes: 9 additions & 0 deletions basic-test/main.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
resource "local_file" "file" {
content = "file"
filename = "${path.module}/file.txt"
}


output "file" {
value = local_file.file.filename
}
3 changes: 3 additions & 0 deletions basic-test/terragrunt.hcl
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
terragrunt {
source = "."
}

0 comments on commit 19dcdc1

Please sign in to comment.