-
Notifications
You must be signed in to change notification settings - Fork 2
/
action.yml
36 lines (36 loc) · 883 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
26
27
28
29
30
31
32
33
34
35
36
name: 'Equinix Metal Server'
description: 'Creates an Equinix metal server'
inputs:
metal_auth_token:
description: 'API Key for Equinix Metal'
required: true
metal_project_id:
description: 'Project ID for Equinix Metal'
required: true
metro:
description: 'Metro for Equinix Metal'
required: true
plan:
description: 'Plan for Equinix Metal'
required: true
os:
description: 'OS for Equinix Metal'
required: true
user_data:
description: 'User data for Equinix Metal'
required: false
default: ''
provisioning_timeout:
description: 'How long to wait for provisioning to complete, in minutes'
default: '30'
outputs:
serverid:
description: 'UUID of the server'
ipaddress:
description: 'IP address of the server'
runs:
using: 'node20'
main: 'dist/index.js'
branding:
icon: 'server'
color: 'green'