Jon Steinich

Results 119 comments of Jon Steinich

Ideally setting after would also work with passing the entire object rather than needing to turn into a string. Can certainly improve documentation either way, but not requiring extra steps...

> Sebastian Burckhardt created a branch of the Orleans-Tx repository which implemented transactions on top of event sourcing Is this publicly available somewhere? I know that the current transactions can...

It's generally possible to chain source generates through intermediate projects. For your case you'd have the Vogen SG run on one project and then create a second project that references...

> Expecting all users to split code into two projects seems like a pretty heavy requirement for a library to ask for proper serialization to be generated though :/ I...

You could manually create one surrogate type (with attribute) for every basic value object backing type (could still create definition like example for other backing types). Then could create a...

You could try building the provider locally (https://developer.hashicorp.com/terraform/cdktf/concepts/providers#add-provider-to-cdktf-json) to verify that the provider is working as expected. If it is, could make a PR against https://github.com/cdktf/cdktf-repository-manager/blob/main/provider.json to update the version...

I haven't tired it myself, but you could take a look at https://github.com/learnk8s/templating-kubernetes/blob/master/csharp/README.md

The provider block needing to exist is mentioned [here](https://github.com/hashicorp/terraform-cdk/issues/465#issuecomment-754916608). More specifically defining providers causes them to appear in both `required_providers` and `provider` within the output. The latter could potentially be...

Looks like the explicit `linux_amd64` argument is specified [here](https://github.com/hashicorp/terraform-cdk/blob/c1ca5b3896b2751a7297da97a1bd9eb10d2ffddf/packages/%40cdktf/cli-core/src/lib/models/terraform-cli.ts#L180). That change was made as part of https://github.com/hashicorp/terraform-cdk/pull/2593. You may want to try manually running `terraform providers lock` to pull in...