-
-
Save KyMidd/a894f4972f79712fb6970f2c1ccc2687 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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