Updated CLI args, config attributes and blocks
include
[block]
Description
You can now access values from included config. E.g., if you want to access a local var region
defined in the parent terragrunt config, you can reference include.locals.region
in the child config.
Note that there are a few limitations/differences with read_terragrunt_config
:
include
references do not include fetched dependencies. This will change in the future.include
references are not automatically available. You must set the newexpose
attribute totrue
to access the included references.- At the moment, you can only have a single
include
block in the child, and you can onlyinclude
one level deep (no nestedinclude
s). This will change in the future.
(This is the first of several features that implement the Imports RFC)