-
Notifications
You must be signed in to change notification settings - Fork 30
43 lines (41 loc) · 1.25 KB
/
tofu_examples.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
name: Examples tofu tests
on:
pull_request:
branches:
- master
paths:
- 'examples/**.tfvars'
- 'examples/**.tf'
- 'scripts/test-examples.sh'
- 'GNUmakefile'
schedule:
- cron: '30 22 * * *'
workflow_dispatch:
jobs:
Examples_tofu_tests:
environment: test-eu-west-2
runs-on: [self-hosted, linux, eu-west-2]
steps:
- uses: actions/checkout@v4
with:
repository: ${{ github.event.pull_request.head.repo.full_name }}
ref: ${{ github.event.pull_request.head.ref }}
- uses: outscale/frieza-github-actions/frieza-clean@master
with:
access_key: ${{ secrets.OSC_ACCESS_KEY }}
secret_key: ${{ secrets.OSC_SECRET_KEY }}
region: ${{ secrets.OSC_REGION }}
- uses: actions/setup-go@v5
with:
go-version: 'stable'
- name: Setup OpenTofu
uses: opentofu/setup-opentofu@v1
with:
tofu_wrapper: false
- name: Run Examples
run: make tofu-examples
env:
TF_VAR_access_key_id: ${{ secrets.OSC_ACCESS_KEY }}
TF_VAR_secret_key_id: ${{ secrets.OSC_SECRET_KEY }}
TF_VAR_region: ${{ secrets.OSC_REGION }}
TF_VAR_image_id: ${{ secrets.OSC_OMI_EXEMPLE }}