forked from interuss/dss
-
Notifications
You must be signed in to change notification settings - Fork 1
53 lines (50 loc) · 1.82 KB
/
Copy pathdss-deploy.yml
File metadata and controls
53 lines (50 loc) · 1.82 KB
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
51
52
53
name: Deploy DSS
on:
workflow_dispatch: {}
jobs:
deploy:
name: Deploy DSS to AWS (manual)
runs-on: ubuntu-latest
environment: ci-deploy-aws-1
if: github.repository == 'interuss/dss' || github.repository == 'Orbitalize/dss'
concurrency:
group: dss-deploy-aws
cancel-in-progress: false
permissions:
id-token: write
contents: read
steps:
- name: Job information
run: |
echo "Job information"
echo "Trigger: ${{ github.event_name }}"
echo "Host: ${{ runner.os }}"
echo "Repository: ${{ github.repository }}"
echo "Branch: ${{ github.ref }}"
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Connect to AWS
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: ${{ secrets.AWS_ROLE_TO_ASSUME }}
aws-region: us-east-1
mask-aws-account-id: true
role-duration-seconds: 5400
- name: "Test Deployment Scenario: AWS-1"
shell: bash
working-directory: ./deploy/operations/
env:
COMPOSE_PROFILES: aws-1
AWS_REGION: us-east-1
TF_VAR_app_hostname: ${{ secrets.APP_HOSTNAME }}
TF_VAR_authorization: ${{ secrets.AUTHORIZATION }}
TF_VAR_aws_iam_administrator_role: ${{ secrets.AWS_IAM_ADMINISTRATOR_ROLE }}
TF_VAR_aws_iam_ci_role: ${{ secrets.AWS_IAM_CI_ROLE }}
TF_VAR_aws_iam_permissions_boundary: ${{ secrets.AWS_IAM_PERMISSIONS_BOUNDARY }}
TF_VAR_aws_role_to_assume: ${{ secrets.AWS_ROLE_TO_ASSUME }}
TF_VAR_aws_route53_zone_id: ${{ secrets.AWS_ROUTE53_ZONE_ID }}
TF_VAR_db_hostname_suffix: ${{ secrets.DB_HOSTNAME_SUFFIX }}
run: |
docker compose up --exit-code-from ci-aws-1