http://docs.aws.amazon.com/IAM/latest/UserGuide/best-practices.html https://www.youtube.com/watch?v=_wiGpBQGCjU
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Privacy Policy — Steps Adventure | |
| **Effective date:** 2026-05-14 | |
| **Last updated:** 2026-05-14 | |
| This document describes how the **Steps Adventure** mobile application ("the app", "we") handles your information. The short version: **we don't collect anything, we don't send anything anywhere, and your step data stays on your device.** | |
| --- | |
| ## 1. What the app does |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| export AWS_PAGER="" | |
| REGEX="^prefix-" | |
| WAIT=true | |
| stacks=$(aws cloudformation describe-stacks --query Stacks[].StackName --output=text) | |
| for stack in $stacks; do | |
| if [[ $stack =~ $REGEX ]]; then |