Get terraform element.
Get shared object.
Add TerraformOutput
. You can provide output element by provide
method of injector
but
sometime, it would be more clear using addOutput
method for each element.
Id string for output element. It could either be a string or another callback that retunrs a string. Likewise, it also has to be unique amongst other siblings.
Configuration callbak for TerraformOutput
class.
Add after dependencies injected callback
. Callback will run after dependency injection process is completed.
You can add multiple callbacks, then they will be executed in sequence.
Action block to execute after di process
Add after init callback
. Callbacks will run right after this element is initialized.
You can add multiple callbacks, then they will be executed in sequence.
Action block to execute right after element is created.
Generated using TypeDoc
Injectable terraform element container. You cannot instantiate directly, only by
yourInjector.provide
oryourInjector.backend
(for backend only).