create
Usage
terrakube template create --organization <ORG> --name <NAME> --description <DESC> --version <VER> --content <BASE64_YAML> [flags]Flags
Flag
Short
Type
Required
Description
Examples
TCL_RAW="flow:
- type: \"terraformPlan\"
step: 100
- type: \"terraformApply\"
step: 200"
TCL_B64=$(echo "$TCL_RAW" | base64 -w 0)
terrakube template create -o "$ORG_ID" \
--name "custom-plan-apply" \
--description "Standard plan and apply flow" \
--version "1.0.0" \
--content "$TCL_B64" \
--output jsonLast updated
Was this helpful?