This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| type Combine<A, B> = Omit<A, keyof B> & | |
| Omit<B, keyof A> & { [K in keyof A & keyof B]: A[K] | B[K] }; | |
| type CombineObjectsFromTuple<T> = T extends [infer K, ...infer R] | |
| ? Combine<K, CombineObjectsFromUnion<R>> | |
| : T; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ➜ cdktf git:(master) ✗ CDKTF_LOG_LEVEL=debug cdktf synth | |
| [2022-08-20T22:40:57.697] [DEBUG] default - Error reporting disabled | |
| [2022-08-20T22:40:57.710] [DEBUG] default - { | |
| "terraform_version": "1.2.7", | |
| "platform": "darwin_arm64", | |
| "provider_selections": {}, | |
| "terraform_outdated": false | |
| } | |
| [2022-08-20T22:40:57.711] [DEBUG] default - { |
OlderNewer