これはこのBlogを吹っ飛ばす前の記事でも書いたのですが、“Wondering Up and Down 〜水のマージナル〜”が本当に好きで、今でもずっと繰り返し聴いています。自動的に自分の子供時代を思い起こさせてくれるような抒情的なメロディライン。ベースラインが同じなのにメロディとサビとで全く違う表情を見せてくれるところ。目を瞑ればその景色がすぐに想像できるような優しい歌詞。そしてその世界をクリアに歌ってくれるCHAKAさんの歌声。
2022/10/12にMacBook Air M2を購入しまして、その後あまり何も考えずにmacOS Ventura 13.0にアップデートしてしまってのですが、セキュリティ周りの仕様が変わったせいなのか、こんな感じでHomebrewがインストールできない事態に。
% /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
==> Checking for `sudo` access (which may request your password)...
Password:
==> This script will install:
/usr/local/bin/brew
/usr/local/share/doc/homebrew
/usr/local/share/man/man1/brew.1
/usr/local/share/zsh/site-functions/_brew
/usr/local/etc/bash_completion.d/brew
/usr/local/Homebrew
==> HOMEBREW_BREW_GIT_REMOTE is set to a non-default URL:
/opt/homebrew will be used as the Homebrew/brew Git remote.
==> HOMEBREW_CORE_GIT_REMOTE is set to a non-default URL:
/opt/homebrew will be used as the Homebrew/homebrew-core Git remote.
Press RETURN/ENTER to continue or any other key to abort:
==> /usr/bin/sudo /usr/sbin/chown -R vlayusuke:admin /usr/local/Homebrew
==> Downloading and installing Homebrew...
fatal: '/opt/homebrew' does not appear to be a git repository
fatal: Could not read from remote repository.
# ===============================================================================
# SSM Parameters for iOS (Pinpoint)
# ===============================================================================
resource "aws_ssm_parameter" "apns_bundle_id" {
name = "/test/prod/apns-bundle-id"
description = "The parameter for apns team id with Pinpoint"
key_id = aws_kms_key.application.key_id
type = "SecureString"
value = "${bundle_id}"
lifecycle {
ignore_changes = [
value,
]
}
}
resource "aws_ssm_parameter" "apns_team_id" {
name = "/test/prod/apns-team-id"
description = "The parameter for apns team id with Pinpoint"
key_id = aws_kms_key.application.key_id
type = "SecureString"
value = "${team_id}"
lifecycle {
ignore_changes = [
value,
]
}
}
resource "aws_ssm_parameter" "apns_token_key_id" {
name = "/test/prod/apns-token-key-id"
description = "The parameter for apns token key id with Pinpoint"
key_id = aws_kms_key.application.key_id
type = "SecureString"
value = "${token_key_id}"
lifecycle {
ignore_changes = [
value,
]
}
}