-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathaction.yml
32 lines (32 loc) · 1.12 KB
/
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
26
27
28
29
30
31
32
name: "Bitwarden Secrets Manager GitHub Action"
description: "GitHub action for retrieving secrets from Bitwarden Secrets Manager"
author: "Bitwarden"
branding:
icon: "unlock"
color: "blue"
inputs:
access_token:
description: "The machine account access token for retrieving secrets"
required: true
secrets:
description: "One or more secret Ids to retrieve and the corresponding GitHub environment variable name to set"
required: true
cloud_region:
description: "(Optional) The Bitwarden server region to use if cloud-hosted service is used. Either 'us' or 'eu'"
required: false
default: "us"
base_url:
description: "(Optional) For self-hosted bitwarden instances provide your https://your.domain.com"
required: false
default: ""
identity_url:
description: "(Optional) For self-hosted bitwarden instances provide your https://your.domain.com/identity"
required: false
default: ""
api_url:
description: "(Optional) For self-hosted bitwarden instances provide your https://your.domain.com/api"
required: false
default: ""
runs:
using: "node20"
main: "dist/index.js"