Amazon EC2 · Arazzo Workflow
Amazon EC2 Bind Elastic IP to a New Instance
Version 1.0.0
Launch an instance, poll until running, allocate an Elastic IP, then associate it.
Provider
Workflows
bind-eip-to-new-instance
Launch an instance, wait for running, and attach a fresh Elastic IP.
Chains RunInstances, a DescribeInstances running-state poll branching on the instance state, AllocateAddress, and AssociateAddress to deliver a launched instance with a stable public IP.
1
launchInstance
runInstances
Launch a single instance from the supplied AMI.
2
pollRunning
describeInstances
Describe the launched instance and branch on its state, looping while pending and proceeding once it reports running.
3
allocateAddress
allocateAddress
Allocate a VPC Elastic IP address.
4
associateAddress
associateAddress
Associate the Elastic IP allocation with the running instance.