import { CdktfResolverProps } from '@cdk8s/cdktf-resolver'
const cdktfResolverProps: CdktfResolverProps = { ... }
Name | Type | Description |
---|---|---|
app |
cdktf.App |
The CDKTF App instance in which the outputs are deinfed in. |
public readonly app: App;
- Type: cdktf.App
The CDKTF App instance in which the outputs are deinfed in.
- Implements: cdk8s.IResolver
import { CdktfResolver } from '@cdk8s/cdktf-resolver'
new CdktfResolver(props: CdktfResolverProps)
Name | Type | Description |
---|---|---|
props |
CdktfResolverProps |
No description. |
- Type: CdktfResolverProps
Name | Description |
---|---|
resolve |
This function is invoked on every property during cdk8s synthesis. |
public resolve(context: ResolutionContext): void
This function is invoked on every property during cdk8s synthesis.
To replace a value, implementations must invoke context.replaceValue
.
- Type: cdk8s.ResolutionContext