Skip to content

feat(asg): add mixed instances policy support #185

feat(asg): add mixed instances policy support

feat(asg): add mixed instances policy support #185

Workflow file for this run

---
name: tf-checks
permissions:
id-token: write
contents: read
on:
pull_request:
paths:
- '**/*.tf'
- '*.tf'
jobs:
tf-checks-on-demand-example:
if: github.actor != 'dependabot[bot]'
uses: clouddrove/github-shared-workflows/.github/workflows/tf-checks.yml@v2
with:
working_directory: './examples/on-demand/'
provider: aws
enable_plan: true
show_plan: false
secrets:
BUILD_ROLE: ${{ secrets.BUILD_ROLE }}
tf-checks-spot-example:
if: github.actor != 'dependabot[bot]'
uses: clouddrove/github-shared-workflows/.github/workflows/tf-checks.yml@v2
with:
working_directory: './examples/spot/'
provider: aws
enable_plan: true
show_plan: false
secrets:
BUILD_ROLE: ${{ secrets.BUILD_ROLE }}
...