fleet/infrastructure/guardduty/apply.sh
Zachary Winnerman 6afcf161db
Guardduty (#8553)
* Added initial code for guard duty, tested some of it

* Add finished (*) guard duty code

* Removed temp workaround stuff
2022-11-03 13:59:35 -04:00

6 lines
189 B
Bash
Executable File

#!/bin/bash
for region in $(aws ec2 describe-regions | jq -r '.Regions[] | .RegionName'); do
terraform workspace select $region || break
terraform apply -auto-approve || break
done