Koki Sato
Koki Sato
@dependabot rebase
@ampcpmgp 報告ありがとうございます、事象確認できました!! 🙇♂️ 時間あるときに見てみます 🙆♂️
@shinGangan ご認識の通り Publication は現在サポートしてないです 検討してみますね、起票あざます!
メモ `https://zenn.dev/api/publications/` で色々情報取れる。 例: `https://zenn.dev/api/publications/google_cloud_jp` バッジとして使えそうなのは `follower_count` 。
`https://zenn.dev/api/articles?publication_name=google_cloud_jp` を使えば記事一覧が取れるので、これでいいね数や記事数を集計できなくはないけど、さすがにやりすぎ?
@dependabot rebase
@dependabot rebase
I've reproduced the issue. This occurs when the variable is marked as **sensitive**. **Terraform version** ```console $ terraform --version Terraform v1.9.8 on darwin_arm64 ``` **Configuration** ```hcl terraform { backend "s3"...
Additionally, I can reproduce the same behavior with S3 native state locking in v1.10. **Terraform version** ```console $ terraform --version Terraform v1.10.0-alpha20241023 on darwin_arm64 ``` **Configuration** ```hcl terraform { backend...
The cause appears to be `os.Exit` being called within [`speakeasy.Ask`](https://github.com/bgentry/speakeasy/blob/760eaf8b681647364e7a400b856e0921248728a5/speakeasy.go#L13-L15). https://github.com/hashicorp/terraform/blob/ccf5ac286dead19ca5cf2fd2578761be8aa7fabb/internal/command/ui_input.go#L141 When SIGINT is caught here: ```go signal.Notify(sig, syscall.SIGHUP, syscall.SIGINT, syscall.SIGKILL, syscall.SIGQUIT, syscall.SIGTERM) go catchSignal(fd, sig, brk) ``` https://github.com/bgentry/speakeasy/blob/760eaf8b681647364e7a400b856e0921248728a5/speakeasy_unix.go#L39-L41 It...