โ† Back to Blog
Activity

Lightning Talk at SRE Tech Talk: GitHub Actions and AWS OIDC

ยท 2 min read

GitHub Actions
OpenID Connect
AWS

On September 25, 2025, I presented at 3-shake SRE Tech Talk #13 on the integration between GitHub Actions and AWS through OpenID Connect (OIDC). The talk explained both the authentication flow and the developments that made OIDC the standard choice for this use case.

About SRE Tech Talk

SRE Tech Talk is a meetup organized by volunteer engineers at 3-shake to share knowledge from infrastructure, site reliability engineering, and DevOps work. The thirteenth edition was a cloud security special with two main sessions and lightning talks. It was hosted on-site at KINTO Technologies and streamed online.

What I shared

The integration starts with AWS trusting GitHub as an identity provider. For each workflow run, GitHub issues a signed OIDC token containing claims about its repository, branch, and execution context. The workflow presents that token to AWS Security Token Service and receives short-lived credentials for an IAM role.

This removes the need to store long-lived IAM access keys as repository secrets. It also avoids manual key rotation and makes access conditions more specific to individual repositories and workflows.

I also traced the adoption path from the OpenID Connect standard to GitHub Actions support, AWS guidance, and later security improvements. The broader lesson was that using OIDC is only one part of the setup: trust-policy conditions, explicit id-token: write permission, least-privilege IAM roles, and pinned third-party actions still determine the strength of the workflow.

View the slides on Speaker Deck.

  • Activity
    ยท 2 min read

    Lightning Talk at JAWS-UG Ibaraki: Becoming an AWS Jr. Champion

    A JAWS-UG Ibaraki lightning talk on the work that led to AWS Jr. Champions recognition and the engineering goals that followed it.

    AWS Jr. Champions
    JAWS-UG
    AWS
  • Recognition
    ยท 2 min read

    Selected as One of 114 Japan AWS Jr. Champions for 2026

    AWS selected 114 early-career engineers from APN companies for the 2026 Japan AWS Jr. Champions cohort, and I was one of them.

    AWS Jr. Champions
    AWS
  • Article
    ยท 12 min read

    Migrating AWS Resources to IaC with Terraformer

    A practical guide to using Terraformer for converting existing AWS resources into Terraform-managed Infrastructure as Code, covering a four-step workflow and best practices for handling secrets and state files.

    Terraformer
    Terraform
    AWS