-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
26 lines (26 loc) · 1.05 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
name: 'Fetch AWS MSK Brokers Bootstrap strings'
description: 'Fetch bootstrap strings of your AWS MSK Brokers'
inputs:
region:
description: 'Region where the MSK Broker is running'
required: true
escape-result:
description: 'If result strings must be encoded, ex: broker1:9096\,broker2:9096'
required: false
default: 'false'
outputs:
brokers_string:
description: 'Brokers URL for no SSL access (if enabled, or else empty)'
brokers_sasl_iam_string:
description: 'Brokers URL for SSL access and IAM Authentication (if enabled, or else empty)'
brokers_sasl_scram_string:
description: 'Brokers URL for SSL access and SCRAM Authentication (if enabled, or else empty)'
brokers_sasl_tls_string:
description: 'Brokers URL for SSL access and TLS Authentication (if enabled, or else empty)'
zookeeper_string:
description: 'Zookeeper URL for no SSL access (if enabled, or else empty)'
zookeeper_tls_string:
description: 'Zookeeper URL for SSL access (if enabled, or else empty)'
runs:
using: 'node20'
main: 'dist/index.js'