Scaffolding for lab 5, add infracost
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 6s

This commit is contained in:
2025-07-11 13:24:59 -07:00
parent 1ae1d8397d
commit b89092cc07
7 changed files with 34 additions and 0 deletions

View File

@ -2,6 +2,7 @@
aws-cli = 'latest'
pandoc = 'latest'
terraform = 'latest'
infracost = 'latest'
# Also required:
# - bitwarden CLI
@ -30,3 +31,8 @@ aws ec2 stop-instances --instance-ids $TF_VAR_EC2_INSTANCE_ID --region us-east-2
run = """
aws ec2 start-instances --instance-ids $TF_VAR_EC2_INSTANCE_ID --region us-east-2
"""
[tasks.costs]
run = """
infracost breakdown --path .
"""