generated from actions/hello-world-javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
25 lines (25 loc) · 754 Bytes
/
action.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
name: 'Enhanced ENV Azure key vault - Get Secrets'
description: 'Get Secrets from Azure Key Vault instance and set as ENV variables.'
inputs:
KEY_VAULT_URI:
description: 'Name of the azure key vault'
required: true
ENVIRONMENT:
description: 'Environment name, e.g.: [PROD | STAGE | TEST]'
required: true
TYPE:
description: 'Type of parameter, e.g.: [frontend | backend]'
required: true
outputs:
env:
description: 'The environment parameters'
json:
description: 'The environment parameters in json for AppService config'
terraform:
description: 'The environment parameters as terraform secrets in JSON format'
branding:
icon: 'download-cloud'
color: 'blue'
runs:
using: 'node12'
main: 'lib/index.js'