AWS CloudFormation · Arazzo Workflow
CloudFormation Provision a Stack
Version 1.0.0
Validate a template, create a stack, poll until CREATE_COMPLETE, then list its resources.
View Spec
View on GitHub
AutomationCloud ResourcesIaCInfrastructure As CodeStack ManagementArazzoWorkflows
Provider
Workflows
provision-stack
Validate a template and provision a CloudFormation stack to completion.
Validates the template body, creates the stack, waits for the stack to reach CREATE_COMPLETE, and lists the resources CloudFormation provisioned.
1
validateTemplate
validateTemplate
Validate the template body before any resources are created so structural or reference errors are surfaced up front.
2
createStack
createStack
Create the stack from the validated template. After this call returns the stack creation has started and can be polled via DescribeStacks.
3
pollStackStatus
describeStacks
Poll DescribeStacks until the stack settles. Branch to listing resources when CREATE_COMPLETE is reached, or to a failure end on a rollback or failed terminal state.
4
listResources
listStackResources
List the resources CloudFormation provisioned for the completed stack.