-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (37 loc) · 820 Bytes
/
logging_dev.yml
File metadata and controls
41 lines (37 loc) · 820 Bytes
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
name: logging_dev
on:
push:
branches:
- main
paths:
- 'dev/logging/**'
- '.github/workflows/logging_dev.yml'
pull_request:
branches:
- main
paths:
- 'dev/logging/**'
- '.github/workflows/logging_dev.yml'
workflow_dispatch:
inputs:
destroy:
description: 'Destroy resources?'
required: true
type: boolean
default: false
concurrency:
group: logging_dev
cancel-in-progress: false
permissions:
contents: read
pull-requests: write
id-token: write
jobs:
terraform:
uses: ./.github/workflows/terraform-dev.yml
with:
working_directory: dev/logging
tf_version: '1.13.0'
skip_check: 'CKV_AWS_338,CKV_AWS_158'
destroy: ${{ github.event.inputs.destroy == 'true' }}
secrets: inherit