-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path2snipe.json
More file actions
79 lines (79 loc) · 2.22 KB
/
Copy path2snipe.json
File metadata and controls
79 lines (79 loc) · 2.22 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"$schema": "https://raw.githubusercontent.com/jackvaughanjr/2snipe-manager/main/2snipe.schema.json",
"name": "1password2snipe",
"display_name": "1Password",
"description": "Sync 1Password Business members to Snipe-IT license seats",
"version": "1.1.0",
"min_snipemgr": "0.1.0",
"tags": ["saas", "identity", "password-manager"],
"category": "Identity & Access Management",
"config_schema": [
{
"key": "onepassword.url",
"label": "1Password SCIM Bridge URL",
"secret": false,
"required": true,
"hint": "e.g. https://your-scim-bridge.example.com"
},
{
"key": "onepassword.api_token",
"label": "1Password SCIM Bearer Token",
"secret": true,
"required": true,
"hint": "Admin Console → Integrations → SCIM Bridge"
},
{
"key": "snipe_it.url",
"label": "Snipe-IT URL",
"secret": false,
"required": true,
"hint": "e.g. https://snipe.example.com"
},
{
"key": "snipe_it.api_key",
"label": "Snipe-IT API Key",
"secret": true,
"required": true,
"hint": "Admin → API Keys in your Snipe-IT instance"
},
{
"key": "snipe_it.license_category_id",
"label": "Snipe-IT License Category ID",
"secret": false,
"required": true,
"hint": "Find at Admin → Categories (integer ID)"
},
{
"key": "snipe_it.license_name",
"label": "Snipe-IT License Name",
"secret": false,
"required": false,
"default": "1Password Business",
"hint": "Name of the license record in Snipe-IT; created automatically on first run"
},
{
"key": "onepassword.include_guests",
"label": "Include Guests",
"secret": false,
"required": false,
"default": "false",
"hint": "Sync Guest-role members (billed separately from full members)"
},
{
"key": "slack.webhook_url",
"label": "Slack Webhook URL",
"secret": true,
"required": false,
"hint": "Optional. Incoming webhook for sync notifications"
}
],
"shared_config": ["snipe_it"],
"commands": {
"sync": true,
"test": true
},
"releases": {
"github_releases": true,
"asset_pattern": "1password2snipe-{os}-{arch}"
}
}