Skip to content

Terraform deploy with OIDC #5

Terraform deploy with OIDC

Terraform deploy with OIDC #5

name: Terraform deploy with OIDC
on:
workflow_dispatch:
inputs:
target-host-environment:
type: choice
description: The AWS environment to deploy (dev/test/prod)
options:
- dev
- test
- prod
env:
AWS_REGION : "us-west-2"
permissions:
id-token: write
contents: read
jobs:
TerraformPlan:
runs-on: ubuntu-latest
steps:
- name: Clone repo
uses: actions/checkout@v4
- name: configure aws credentials
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: arn:aws:iam::035866691871:role/gha-incubator
role-session-name: ghaincubatorsession
aws-region: ${{ env.AWS_REGION }}
# Hello from AWS: WhoAmI
- name: Sts GetCallerIdentity
run: |
aws sts get-caller-identity
- name: Setup terraform
uses: hashicorp/setup-terraform@v3
- name: Run terraform
run: |
TF_LOG='DEBUG'
pushd ./terraform-incubator/home-unite-us
terraform init
terraform plan
popd