Skip to content

Commit

Permalink
added main.yaml workflow file
Browse files Browse the repository at this point in the history
  • Loading branch information
yashrajdighe committed Mar 17, 2024
1 parent 3ff3573 commit f69246a
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: List all S3 buckets

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

env:
AWS_REGION : "us-east-1"

permissions:
id-token: write # This is required for requesting the JWT
contents: read # This is required for actions/checkout
jobs:
AssumeRoleAndCallIdentity:
runs-on: ubuntu-latest
steps:
- name: Git clone the repository
uses: actions/checkout@v3
- name: configure aws credentials
uses: aws-actions/[email protected]
with:
role-to-assume: arn:aws:iam::851725231363:role/github-oidc-assume-role
role-session-name: GitHub_to_AWS_via_FederatedOIDC
aws-region: ${{ env.AWS_REGION }}
- name: Sts GetCallerIdentity
run: |
aws sts get-caller-identity
- name: List Buckets
run: |
aws s3 ls

0 comments on commit f69246a

Please sign in to comment.