Sebastian Korfmann
Sebastian Korfmann
> Is there a potential python approach to your sample? Since the CLI is written in Typescript only, I don't think there's a similar way to do this right now...
I took [this example](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/cloudfront_distribution) and converted it `bare`: Generated version ```ts this.addOverride('locals', { s3OriginId: "myS3Origin" }); const s3_distribution = new CloudfrontDistribution(this, 's3_distribution', { aliases: [ "mysite.example.com", "yoursite.example.com" ], comment: "Some...
The schema for `creditSpecification` looks like this: ```json // On AWS instance resource "credit_specification": { "type": ["list", ["object", { "cpu_credits": "string" }]], "description_kind": "plain", "computed": true }, ``` For the...
``` domainName: "${aws_s3_bucket.b.bucket_regional_domain_name}", // ... const b = new S3Bucket(this, 'b', { acl: "private", bucket: "mybucket", tags: { Name: "My bucket" } }); ``` Unfortunately, this doesn't work since the...
This is still a thing, just encountered the same issue
No, haven't looked further into it yet. But I will probably do it the next couple of days, as we're actually going to implement it.
Well, better than nothing :) Thanks for sharing!
> The time to vote is now over for the CDK.dev Featured Contributor section and the turnout was really bad. > Only 15 people out of 950 in the Slack...
So - what's the status of this? /cc @EdwinRad
please reopen against https://github.com/cdk-dev/website/pull/170 if still relevant