ssh
スター2
フォーク0
更新日2026年7月15日 01:54
Manage SSH access to the OCI instance — open, connect, or close
インストール
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SKILL.md
readonlyメニュー
Manage SSH access to the OCI instance — open, connect, or close
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Scaffold a new OCI Terraform module following project conventions
Open or close a TCP/UDP port on the instance — updates security list and iptables
Deploy or update OCI infrastructure — runs plan and apply
Interactive setup wizard — walks through OCI configuration with guided questions
Show current state of OCI infrastructure — IPs, resources, drift
| name | ssh |
| description | Manage SSH access to the OCI instance — open, connect, or close |
| disable-model-invocation | true |
| allowed-tools | Bash, Read |
| argument-hint | [allow|revoke|connect] |
Manage SSH access to the OCI compute instance. SSH is blocked by default and must be opened from a specific IP.
Arguments:
allow (default): Open SSH from the user's current public IP and apply the security list changerevoke: Close SSH access (remove the IP from the security list) and applyconnect: SSH into the instancetunnel: Open MySQL SSH tunnel (localhost:3306)curl -4 -s --max-time 5 https://ifconfig.meterraform -chdir=terraform/environments/oci-prod apply -var="ssh_source_cidr=<IP>/32" -target=module.network.oci_core_security_list.mainterraform -chdir=terraform/environments/oci-prod apply -var="ssh_source_cidr=" -target=module.network.oci_core_security_list.mainterraform -chdir=terraform/environments/oci-prod output -raw instance_ipssh ubuntu@<IP>ssh -N -L 3306:<mysql_ip>:3306 ubuntu@<instance_ip>mysql -h 127.0.0.1 -P 3306 -u admin -p