-
-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (36 loc) · 1.18 KB
/
digger_workflow_dev.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
name: Digger Workflow
on:
workflow_dispatch:
inputs:
spec:
required: true
run_name:
required: false
run-name: "${{inputs.run_name}}"
jobs:
digger-job:
runs-on: ubuntu-latest
environment: dev
permissions:
contents: write # required to merge PRs
actions: write # required for plan persistence
id-token: write # required for workload-identity-federation
pull-requests: write # required to post PR comments
statuses: write # required to validate combined PR status
steps:
- uses: actions/checkout@v4
- name: ${{ fromJSON(github.event.inputs.spec).job_id }}
run: echo "job id ${{ fromJSON(github.event.inputs.spec).job_id }}"
- uses: diggerhq/[email protected]
with:
digger-spec: ${{ inputs.spec }}
setup-opentofu: true
opentofu-version: v1.8.1
setup-terragrunt: true
terragrunt-version: 0.66.4
setup-aws: true
aws-role-to-assume: arn:aws:iam::891377085136_Admin:role/github-oidc-auth-role
aws-region: eu-central-1
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}