- An AWS account (free to start)
- Docker
If you haven't already, generate a new Runiac project using the starter:
runiac new my-runiac-terraform-project --url github.com/runiac/runiac-starter-terraform-aws-hello-world
Run a local deployment in the newly created my-runiac-terraform-project
folder:
runiac deploy -a <aws-account-id> --local --interactive
Open step1/default/main.tf
and start adding resources. Once ready to test run the same runiac deploy
command.
Finally, You can clean up any resources that were created by runiac with the --self-destroy
flag:
runiac deploy -a <aws-account-id> --local --self-destroy
Congratulations! You've successfully run, modified and destroyed your Runiac project.