With this testbed, it is possible to run a full OSISM installation, the baseline of the Sovereign Cloud Stack, on an existing OpenStack environment such as Cleura or REGIO.cloud.
gruntwork-io/terragrunt (gruntwork-io/terragrunt)
### [`v0.68.13`](https://redirect.github.com/gruntwork-io/terragrunt/releases/tag/v0.68.13)
[Compare Source](https://redirect.github.com/gruntwork-io/terragrunt/compare/v0.68.12...v0.68.13-beta2024111301)
#### Updated CLI args, config attributes and blocks
- `terragrunt-queue-include-units-reading`
- `mark_as_read`
#### `terragrunt-queue-include-units-reading` Feature Description
Drive inclusion into the Terragrunt run queue using the name of a file read via an HCL function. This can used to do things like drive inclusion into the run queue when one `terragrunt.hcl` file reads another via functions like `read_terragrunt_config`.
##### ⚠️ Limitation in new flag
As described at the bottom of [terragrunt-queue-include-units-reading docs](https://terragrunt.gruntwork.io/docs/reference/cli-options/#terragrunt-queue-include-units-reading), due to the order in which HCL configurations are parsed in Terragrunt, functions reading files within HCL must do so within the `locals` block to result in changes to inclusion into the run queue.
This is a limitation that the maintainers will actively look to address, but will require substantial rework in HCL parsing to remove correctly.
##### Supported HCL Functions
- \[x] `read_terragrunt_config`
- \[x] `sops_decrypt_file`
- \[x] `read_tfvars_file`
- \[x] `mark_as_read` \[new]
##### Relevant RFC
[https://github.com/gruntwork-io/terragrunt/issues/3418](https://redirect.github.com/gruntwork-io/terragrunt/issues/3418)
#### What's Changed
- feat: Adding `--terragrunt-queue-include-units-reading` by [@yhakbar](https://redirect.github.com/yhakbar) in [https://github.com/gruntwork-io/terragrunt/pull/3550](https://redirect.github.com/gruntwork-io/terragrunt/pull/3550)
- fix: Re-introducing `--terragrunt-hclfmt-file` docs by [@yhakbar](https://redirect.github.com/yhakbar) in [https://github.com/gruntwork-io/terragrunt/pull/3552](https://redirect.github.com/gruntwork-io/terragrunt/pull/3552)
- docs: Adding documentation for release process by [@yhakbar](https://redirect.github.com/yhakbar) in [https://github.com/gruntwork-io/terragrunt/pull/3487](https://redirect.github.com/gruntwork-io/terragrunt/pull/3487)
- docs: Adding Discord Markdown badge by [@yhakbar](https://redirect.github.com/yhakbar) in [https://github.com/gruntwork-io/terragrunt/pull/3539](https://redirect.github.com/gruntwork-io/terragrunt/pull/3539)
- chore: Refactoring out helpers by [@yhakbar](https://redirect.github.com/yhakbar) in [https://github.com/gruntwork-io/terragrunt/pull/3465](https://redirect.github.com/gruntwork-io/terragrunt/pull/3465)
**Full Changelog**: https://github.com/gruntwork-io/terragrunt/compare/v0.68.12...v0.68.13
### [`v0.68.12`](https://redirect.github.com/gruntwork-io/terragrunt/releases/tag/v0.68.12)
[Compare Source](https://redirect.github.com/gruntwork-io/terragrunt/compare/v0.68.10...v0.68.12)
#### What's Changed
- feat: Allow hcl format from stdin by [@alikhil](https://redirect.github.com/alikhil) in [https://github.com/gruntwork-io/terragrunt/pull/3288](https://redirect.github.com/gruntwork-io/terragrunt/pull/3288)
- build(deps): bump ruby/setup-ruby from 1.199.0 to 1.202.0 by [@dependabot](https://redirect.github.com/dependabot) in [https://github.com/gruntwork-io/terragrunt/pull/3549](https://redirect.github.com/gruntwork-io/terragrunt/pull/3549)
- build(deps): bump github.com/hashicorp/go-getter/v2 from 2.2.1 to 2.2.3 by [@dependabot](https://redirect.github.com/dependabot) in [https://github.com/gruntwork-io/terragrunt/pull/3545](https://redirect.github.com/gruntwork-io/terragrunt/pull/3545)
- build(deps): bump golang.org/x/term from 0.25.0 to 0.26.0 by [@dependabot](https://redirect.github.com/dependabot) in [https://github.com/gruntwork-io/terragrunt/pull/3547](https://redirect.github.com/gruntwork-io/terragrunt/pull/3547)
- build(deps): bump go.opentelemetry.io/otel/exporters/stdout/stdoutmetric from 1.23.1 to 1.32.0 by [@dependabot](https://redirect.github.com/dependabot) in [https://github.com/gruntwork-io/terragrunt/pull/3548](https://redirect.github.com/gruntwork-io/terragrunt/pull/3548)
- build(deps): bump go.opentelemetry.io/otel/exporters/stdout/stdouttrace from 1.22.0 to 1.32.0 by [@dependabot](https://redirect.github.com/dependabot) in [https://github.com/gruntwork-io/terragrunt/pull/3546](https://redirect.github.com/gruntwork-io/terragrunt/pull/3546)
**Full Changelog**: https://github.com/gruntwork-io/terragrunt/compare/v0.68.10...v0.68.12
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
[ ] If you want to rebase/retry this PR, check this box
This PR contains the following updates:
v0.68.10
->v0.68.13
Release Notes
gruntwork-io/terragrunt (gruntwork-io/terragrunt)
### [`v0.68.13`](https://redirect.github.com/gruntwork-io/terragrunt/releases/tag/v0.68.13) [Compare Source](https://redirect.github.com/gruntwork-io/terragrunt/compare/v0.68.12...v0.68.13-beta2024111301) #### Updated CLI args, config attributes and blocks - `terragrunt-queue-include-units-reading` - `mark_as_read` #### `terragrunt-queue-include-units-reading` Feature Description Drive inclusion into the Terragrunt run queue using the name of a file read via an HCL function. This can used to do things like drive inclusion into the run queue when one `terragrunt.hcl` file reads another via functions like `read_terragrunt_config`. ##### ⚠️ Limitation in new flag As described at the bottom of [terragrunt-queue-include-units-reading docs](https://terragrunt.gruntwork.io/docs/reference/cli-options/#terragrunt-queue-include-units-reading), due to the order in which HCL configurations are parsed in Terragrunt, functions reading files within HCL must do so within the `locals` block to result in changes to inclusion into the run queue. This is a limitation that the maintainers will actively look to address, but will require substantial rework in HCL parsing to remove correctly. ##### Supported HCL Functions - \[x] `read_terragrunt_config` - \[x] `sops_decrypt_file` - \[x] `read_tfvars_file` - \[x] `mark_as_read` \[new] ##### Relevant RFC [https://github.com/gruntwork-io/terragrunt/issues/3418](https://redirect.github.com/gruntwork-io/terragrunt/issues/3418) #### What's Changed - feat: Adding `--terragrunt-queue-include-units-reading` by [@yhakbar](https://redirect.github.com/yhakbar) in [https://github.com/gruntwork-io/terragrunt/pull/3550](https://redirect.github.com/gruntwork-io/terragrunt/pull/3550) - fix: Re-introducing `--terragrunt-hclfmt-file` docs by [@yhakbar](https://redirect.github.com/yhakbar) in [https://github.com/gruntwork-io/terragrunt/pull/3552](https://redirect.github.com/gruntwork-io/terragrunt/pull/3552) - docs: Adding documentation for release process by [@yhakbar](https://redirect.github.com/yhakbar) in [https://github.com/gruntwork-io/terragrunt/pull/3487](https://redirect.github.com/gruntwork-io/terragrunt/pull/3487) - docs: Adding Discord Markdown badge by [@yhakbar](https://redirect.github.com/yhakbar) in [https://github.com/gruntwork-io/terragrunt/pull/3539](https://redirect.github.com/gruntwork-io/terragrunt/pull/3539) - chore: Refactoring out helpers by [@yhakbar](https://redirect.github.com/yhakbar) in [https://github.com/gruntwork-io/terragrunt/pull/3465](https://redirect.github.com/gruntwork-io/terragrunt/pull/3465) **Full Changelog**: https://github.com/gruntwork-io/terragrunt/compare/v0.68.12...v0.68.13 ### [`v0.68.12`](https://redirect.github.com/gruntwork-io/terragrunt/releases/tag/v0.68.12) [Compare Source](https://redirect.github.com/gruntwork-io/terragrunt/compare/v0.68.10...v0.68.12) #### What's Changed - feat: Allow hcl format from stdin by [@alikhil](https://redirect.github.com/alikhil) in [https://github.com/gruntwork-io/terragrunt/pull/3288](https://redirect.github.com/gruntwork-io/terragrunt/pull/3288) - build(deps): bump ruby/setup-ruby from 1.199.0 to 1.202.0 by [@dependabot](https://redirect.github.com/dependabot) in [https://github.com/gruntwork-io/terragrunt/pull/3549](https://redirect.github.com/gruntwork-io/terragrunt/pull/3549) - build(deps): bump github.com/hashicorp/go-getter/v2 from 2.2.1 to 2.2.3 by [@dependabot](https://redirect.github.com/dependabot) in [https://github.com/gruntwork-io/terragrunt/pull/3545](https://redirect.github.com/gruntwork-io/terragrunt/pull/3545) - build(deps): bump golang.org/x/term from 0.25.0 to 0.26.0 by [@dependabot](https://redirect.github.com/dependabot) in [https://github.com/gruntwork-io/terragrunt/pull/3547](https://redirect.github.com/gruntwork-io/terragrunt/pull/3547) - build(deps): bump go.opentelemetry.io/otel/exporters/stdout/stdoutmetric from 1.23.1 to 1.32.0 by [@dependabot](https://redirect.github.com/dependabot) in [https://github.com/gruntwork-io/terragrunt/pull/3548](https://redirect.github.com/gruntwork-io/terragrunt/pull/3548) - build(deps): bump go.opentelemetry.io/otel/exporters/stdout/stdouttrace from 1.22.0 to 1.32.0 by [@dependabot](https://redirect.github.com/dependabot) in [https://github.com/gruntwork-io/terragrunt/pull/3546](https://redirect.github.com/gruntwork-io/terragrunt/pull/3546) **Full Changelog**: https://github.com/gruntwork-io/terragrunt/compare/v0.68.10...v0.68.12Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.