mirror of
https://github.com/aws-actions/configure-aws-credentials.git
synced 2026-03-12 18:07:10 -04:00
BEGIN_COMMIT_OVERRIDE chore: update configure-aws-credentials to v5 (#1470) END_COMMIT_OVERRIDE
39 lines
1.2 KiB
YAML
39 lines
1.2 KiB
YAML
---
|
||
name: deploy
|
||
on:
|
||
push:
|
||
branches:
|
||
- main
|
||
env:
|
||
AWS_DEFAULT_REGION: us-east-1
|
||
AWS_DEFAULT_OUTPUT: json
|
||
|
||
jobs:
|
||
deploy-cfn:
|
||
name: deploy
|
||
runs-on: ubuntu-latest
|
||
# These permissions are needed to interact with GitHub’s OIDC Token endpoint.
|
||
permissions:
|
||
id-token: write
|
||
contents: read
|
||
steps:
|
||
- name: Checkout
|
||
uses: actions/checkout@v5
|
||
- name: Configure AWS Credentials
|
||
uses: aws-actions/configure-aws-credentials@v5
|
||
with:
|
||
aws-region: us-east-1
|
||
## the following creates an ARN based on the values entered into github secrets
|
||
role-to-assume: arn:aws:iam::${{ secrets.AWS_ACCOUNT_ID }}:role/${{ secrets.AWS_DEPLOY_ROLE }}
|
||
role-session-name: myGitHubActions
|
||
- name: Deploy EC2 Bastion
|
||
uses: aws-actions/aws-cloudformation-github-deploy@v1.3.0
|
||
with:
|
||
name: myEC2bastion
|
||
## change to path to template in your github repo
|
||
template: cloudformation/ec2-bastion.yml
|
||
capabilities: CAPABILITY_IAM, CAPABILITY_NAMED_IAM
|
||
no-fail-on-empty-changeset: "1"
|
||
## parameter set in github secrets
|
||
parameter-overrides: "pVpc=${{ secrets.VPC_ID }},pSubnet=${{ secrets.SUBNET_ID }}"
|