Skip to content

Commit

Permalink
chore(docs): reword
Browse files Browse the repository at this point in the history
Co-authored-by: Laura Pacilio <83350965+laurapacilio@users.noreply.github.com>
  • Loading branch information
DanielMSchmidt and laurapacilio authored Oct 15, 2021
1 parent d44a9b7 commit 38ab1c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website/docs/cdktf/concepts/tokens.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ new Eks(this, "EksModule", {
});
```

Initially, the CDK for Terraform will resolve `Token.asList(vpc.publicSubnetsOutput)` to `["#{TOKEN[TOKEN.9]}"]` and `logRetention.numberValue` to a big negative number like `-123828381238238`.
Later in synthesis, the CDK for Terraform will resolve the token to `${module.<module id>.public_subnets}` and `${var.logRetentionInDays}`.
Initially, CDKTF will resolve `Token.asList(vpc.publicSubnetsOutput)` to `["#{TOKEN[TOKEN.9]}"]` and `logRetention.numberValue` to a big negative number like `-123828381238238`.
Later in synthesis, CDKTF will resolve the token to `${module.<module id>.public_subnets}` and `${var.logRetentionInDays}`.

```json
{
Expand Down

0 comments on commit 38ab1c8

Please sign in to comment.