-
Notifications
You must be signed in to change notification settings - Fork 22
50 lines (45 loc) · 1.26 KB
/
test_onlymanagedrulegroups.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
env:
AWS_REGION: eu-central-1
AWS_ROLE: FirewallFactoryGithubPipelineRole
AWS_ACCOUNT: 859220371210
permissions:
id-token: write
contents: read
on:
push:
branches:
- 'main'
pull_request:
types:
- closed
- opened
- reopened
jobs:
deploy_production_main:
name: Test and deploy Firewalls
runs-on: ubuntu-latest
if: github.ref_name == 'main' && github.event_name == 'push'
steps:
- name: 📦 Install Taskfile
run: |
npm install -g @go-task/cli
- name: 📦 Install Packages
run: |
npm install
- name: ⬇️ Checkout
uses: actions/checkout@v3
- name: 🔑 Configure AWS credentials
uses: aws-actions/[email protected]
env:
ACCOUNT_ID: ${{ env.AWS_ACCOUNT }}
with:
role-to-assume: arn:aws:iam::${{ env.ACCOUNT_ID }}:role/${{ env.AWS_ROLE }}
aws-region: ${{ env.AWS_REGION }}
role-session-name: GitHubActionsSession
mask-aws-account-id: false
- name: ✚ Deploy Firewall to AWS
run: |
task deploy config=onlyManagedRuleGroupsTests
- name: 🗑️ Remove Firewall from AWS
run: |
task destroy config=onlyManagedRuleGroupsTests