-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml.orig
45 lines (45 loc) · 1.61 KB
/
action.yml.orig
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
44
45
# action.yml
name: 'strongDM Registration'
description: 'Register the strongDM resource'
inputs:
sdm_base_type: # id of input
description: 'type of strongDM resource to create;'
required: true
sdm_base_apiAccessKey: # id of input
description: 'strongDM API Access Key'
required: true
sdm_base_apiSecretKey: # id of input
description: 'strongDM API Access Key'
required: true
sdm_values_name: # id of input
description: 'name to give strongDM resource'
required: true
sdm_values_username: # id of input
description: "username for sdm website access"
required: false
sdm_values_password: # id of input
description: "password for sdm website access"
required: false
sdm_values_url: # id of input
description: "url of website to access"
required: false
sdm_values_subdomain: # id of input
description: "unique subdomain for url endpoint"
required: false
sdm_values_healthcheckPath: # id of input
description: "healthcheckPath for website resource"
required: false
default: "/"
runs:
using: 'docker'
image: 'Dockerfile'
env:
sdm_base_type: ${{ inputs.sdm_base_type }}
sdm_base_apiAccessKey: ${{ inputs.sdm_base_apiAccessKey }}
sdm_base_apiSecretKey: ${{ inputs.sdm_base_apiSecretKey }}
sdm_values_name: ${{ inputs.sdm_values_name }}
sdm_values_username: ${{ inputs.sdm_values_username }}
sdm_values_password: ${{ inputs.sdm_values_password }}
sdm_values_url: ${{ inputs.sdm_values_url }}
sdm_values_subdomain: ${{ inputs.sdm_values_subdomain }}
sdm_values_healthcheckPath: ${{ inputs.sdm_values_healthcheckPath }}