Kevin Su
Kevin Su
@khushail The _Use Case_ section in the issue already mentions `curl`. > Today, this requires using `curl` to manually fetch IMDS session tokens for use in subsequent get requests. Using...
May make more sense to reconsider now that the Determinate Nix Installer has a non-zero major version (v0.38.1 → [v3.0.0](https://github.com/DeterminateSystems/nix-installer/releases/tag/v3.0.0)). The alternative is a release branch strategy (e.g. `refs/heads/stable`) like...
I haven't been following the split closely but if Terraform and OpenTofu are still interchangeable, you can use the existing `TERRAFORM_BINARY_NAME` environment variable to make CDKTF use the `tofu` binary...
Current and available locales can be listed on Unix-like systems with `locale` and `locale --all-locales`/`locale -a`. Here's the output on the current GitHub-managed Ubuntu 24.04 runners. `locale` ```text locale: Cannot...
Note: Current workaround is to import the compiled `.js`/`.jsx` files directly like in Squint. https://github.com/squint-cljs/squint/issues/677#issuecomment-2992004110
https://github.com/aws/aws-cdk-rfcs/pull/657#discussion_r2036706731 proposes something similar.
Is there anything special needed on the Pulumi side for `pulumi.asset.FileAsset` fields (`source` in this proposed resource)?
@microsoft-github-policy-service agree company="NVIDIA"
Looks like that bumped some other ESLint deps which don't like some of the `require("{module}")` statements. Need to switch those to the ESM import syntax.
Moved as many remaining imports using CJS syntax (`require("module")`) to ESM syntax. The only one I didn't touch is this since I'm not too sure what to do with it:...