-
Notifications
You must be signed in to change notification settings - Fork 2
36 lines (36 loc) · 1.03 KB
/
acc-tests-dispatch.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
name: Acceptance tests dispatch
on:
workflow_dispatch:
inputs:
clientId:
description: Client ID to use for authentication
required: true
type: string
clientSecret:
description: Client secret to use for authentication
type: string
required: true
oktaOrgUrl:
description: Okta organization URL
required: false
type: string
oktaAuthServer:
description: Okta authentication server identifier
required: false
type: string
project:
description: Project name to create the tested objects in
required: false
type: string
default: terraform-acceptance-tests
jobs:
test:
uses: ./.github/workflows/acc-tests.yml
with:
clientId: "${{ inputs.clientId }}"
ref: "${{ github.ref_name }}"
oktaOrgUrl: "${{ inputs.oktaOrgUrl }}"
oktaAuthServer: "${{ inputs.oktaAuthServer }}"
project: "${{ inputs.project }}"
secrets:
clientSecret: "${{ inputs.clientSecret }}"