Skip to content

Instantly share code, notes, and snippets.

@KyMidd
Created May 31, 2023 19:47
Show Gist options
  • Save KyMidd/a894f4972f79712fb6970f2c1ccc2687 to your computer and use it in GitHub Desktop.
Save KyMidd/a894f4972f79712fb6970f2c1ccc2687 to your computer and use it in GitHub Desktop.
name: Terraform Batch
on:
# Permit targeted manual trigger within console
workflow_dispatch:
inputs:
pod-selection-regex:
description: Regex to match pods to deploy, e.g. "dev-s00[1-5]" or substring match like "s001", use asterisk "*" to select all Pods
type: string
required: true
default: '*'
concurrency:
description: Deploy strategy, concurrent or sequential
type: choice
required: true
default: concurrent
options:
- concurrent
- sequential
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment