Skip to content

Commit

Permalink
Merge pull request #746 from kbrock/provision-asl-workflow
Browse files Browse the repository at this point in the history
workflow to provision
  • Loading branch information
Fryguy authored May 7, 2024
2 parents 150ff56 + 1f683c4 commit 24a0fa2
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions content/workflows/provision-vm-builtin/provision-vm-builtin.asl
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"Comment": "Basic VM Provisioning",
"StartAt": "PreProvision",
"States": {
"PreProvision": {
"Type": "Pass",
"Next": "Provision"
},
"Provision": {
"Type": "Task",
"Resource": "builtin://provision_execute",
"Next": "PostProvision"
},
"PostProvision": {
"Type": "Pass",
"End": true
}
}
}

0 comments on commit 24a0fa2

Please sign in to comment.