GetBootstrapBrokers

GetBootstrapBrokers

Certified

Get bootstrap broker strings for an Amazon MSK cluster

yaml
type: io.kestra.plugin.aws.msk.GetBootstrapBrokers
yaml
id: msk_get_brokers
namespace: company.team

tasks:
  - id: get_brokers
    type: io.kestra.plugin.aws.msk.GetBootstrapBrokers
    region: "{{ secret('AWS_REGION') }}"
    accessKeyId: "{{ secret('AWS_ACCESS_KEY_ID') }}"
    secretKeyId: "{{ secret('AWS_SECRET_ACCESS_KEY') }}"
    clusterArn: "{{ secret('MSK_CLUSTER_ARN') }}"

  - id: log_brokers
    type: io.kestra.plugin.core.log.Log
    message: "Bootstrap brokers: {{ outputs.get_brokers.bootstrapBrokerString }}"
Properties
DefaultPT15M