├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── collections └── requirements.yml ├── demo.tf ├── deploy.yml ├── invs ├── dev │ ├── hosts │ ├── hosts.yml │ └── secrets.yml └── prod │ ├── hosts │ ├── hosts.yml │ └── secrets.yml ├── ping.yml ├── print_system_info.ps1 ├── print_system_info.sh ├── roles ├── build │ └── tasks │ │ └── main.yml └── deploy │ └── tasks │ └── main.yml ├── stress-tests ├── roles │ └── stress-test │ │ └── tasks │ │ └── main.yml ├── test.tf ├── test.yml └── test2.yml ├── terragrunt.hcl └── tf └── demo.tf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreui/semaphore-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreui/semaphore-demo/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreui/semaphore-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreui/semaphore-demo/HEAD/README.md -------------------------------------------------------------------------------- /collections/requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreui/semaphore-demo/HEAD/collections/requirements.yml -------------------------------------------------------------------------------- /demo.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreui/semaphore-demo/HEAD/demo.tf -------------------------------------------------------------------------------- /deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreui/semaphore-demo/HEAD/deploy.yml -------------------------------------------------------------------------------- /invs/dev/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreui/semaphore-demo/HEAD/invs/dev/hosts -------------------------------------------------------------------------------- /invs/dev/hosts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreui/semaphore-demo/HEAD/invs/dev/hosts.yml -------------------------------------------------------------------------------- /invs/dev/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreui/semaphore-demo/HEAD/invs/dev/secrets.yml -------------------------------------------------------------------------------- /invs/prod/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreui/semaphore-demo/HEAD/invs/prod/hosts -------------------------------------------------------------------------------- /invs/prod/hosts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreui/semaphore-demo/HEAD/invs/prod/hosts.yml -------------------------------------------------------------------------------- /invs/prod/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreui/semaphore-demo/HEAD/invs/prod/secrets.yml -------------------------------------------------------------------------------- /ping.yml: -------------------------------------------------------------------------------- 1 | - hosts: site 2 | roles: 3 | - ping -------------------------------------------------------------------------------- /print_system_info.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreui/semaphore-demo/HEAD/print_system_info.ps1 -------------------------------------------------------------------------------- /print_system_info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreui/semaphore-demo/HEAD/print_system_info.sh -------------------------------------------------------------------------------- /roles/build/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreui/semaphore-demo/HEAD/roles/build/tasks/main.yml -------------------------------------------------------------------------------- /roles/deploy/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreui/semaphore-demo/HEAD/roles/deploy/tasks/main.yml -------------------------------------------------------------------------------- /stress-tests/roles/stress-test/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreui/semaphore-demo/HEAD/stress-tests/roles/stress-test/tasks/main.yml -------------------------------------------------------------------------------- /stress-tests/test.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreui/semaphore-demo/HEAD/stress-tests/test.tf -------------------------------------------------------------------------------- /stress-tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreui/semaphore-demo/HEAD/stress-tests/test.yml -------------------------------------------------------------------------------- /stress-tests/test2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreui/semaphore-demo/HEAD/stress-tests/test2.yml -------------------------------------------------------------------------------- /terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreui/semaphore-demo/HEAD/terragrunt.hcl -------------------------------------------------------------------------------- /tf/demo.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semaphoreui/semaphore-demo/HEAD/tf/demo.tf --------------------------------------------------------------------------------