├── .editorconfig ├── .eslintrc.cjs ├── .github ├── CODEOWNERS └── workflows │ ├── release-please.yml │ ├── stale.yml │ ├── test-action release-version.yml │ ├── test-action.yml │ ├── test.yml │ └── update-main-version.yml ├── .gitignore ├── .npmrc ├── .nvmrc ├── .prettierrc.json ├── .terragrunt-version ├── .terragrunt-version-latest ├── CHANGELOG.md ├── LICENSE ├── README.md ├── action.yml ├── lib └── index.js ├── package.json ├── renovate.json ├── src ├── action.ts ├── get-inputs-and-outputs.ts ├── index.ts └── interfaces.ts ├── test ├── .terragrunt-version ├── action.ts └── get-inputs-and-outputs.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autero1/action-terragrunt/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autero1/action-terragrunt/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * autero1 2 | -------------------------------------------------------------------------------- /.github/workflows/release-please.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autero1/action-terragrunt/HEAD/.github/workflows/release-please.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autero1/action-terragrunt/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/test-action release-version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autero1/action-terragrunt/HEAD/.github/workflows/test-action release-version.yml -------------------------------------------------------------------------------- /.github/workflows/test-action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autero1/action-terragrunt/HEAD/.github/workflows/test-action.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autero1/action-terragrunt/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/update-main-version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autero1/action-terragrunt/HEAD/.github/workflows/update-main-version.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | coverage 3 | .npm 4 | .eslintcache 5 | .env 6 | node_modules 7 | .idea 8 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 20.11.1 2 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autero1/action-terragrunt/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.terragrunt-version: -------------------------------------------------------------------------------- 1 | 0.51.0 2 | -------------------------------------------------------------------------------- /.terragrunt-version-latest: -------------------------------------------------------------------------------- 1 | latest 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autero1/action-terragrunt/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autero1/action-terragrunt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autero1/action-terragrunt/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autero1/action-terragrunt/HEAD/action.yml -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autero1/action-terragrunt/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autero1/action-terragrunt/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autero1/action-terragrunt/HEAD/renovate.json -------------------------------------------------------------------------------- /src/action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autero1/action-terragrunt/HEAD/src/action.ts -------------------------------------------------------------------------------- /src/get-inputs-and-outputs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autero1/action-terragrunt/HEAD/src/get-inputs-and-outputs.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autero1/action-terragrunt/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autero1/action-terragrunt/HEAD/src/interfaces.ts -------------------------------------------------------------------------------- /test/.terragrunt-version: -------------------------------------------------------------------------------- 1 | 0.50.0 2 | -------------------------------------------------------------------------------- /test/action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autero1/action-terragrunt/HEAD/test/action.ts -------------------------------------------------------------------------------- /test/get-inputs-and-outputs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autero1/action-terragrunt/HEAD/test/get-inputs-and-outputs.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autero1/action-terragrunt/HEAD/tsconfig.json --------------------------------------------------------------------------------