Compare commits
30 Commits
ef393085fd
...
22d78d4916
| Author | SHA1 | Date | |
|---|---|---|---|
| 22d78d4916 | |||
| 17e5ffc821 | |||
| 6326daea2e | |||
| 16587c232b | |||
| d0bea2a244 | |||
| 5182465650 | |||
| 30dd5d249b | |||
| 5f3640dbe9 | |||
| f20ce2053f | |||
| 07a1b3b5e8 | |||
| dc2d62b8e0 | |||
| ec88661de5 | |||
| d69fdbeed6 | |||
| 19ddd2e886 | |||
| 299a6e7659 | |||
| 54b5f23c12 | |||
| 09038f947f | |||
| e5e99ffa19 | |||
| 8f05046a00 | |||
| ac254ec0f1 | |||
| 8ee9ab9fef | |||
| e65a059fc3 | |||
| 1f45b78358 | |||
| 1472324c1b | |||
| c9e8e137cb | |||
| 76c75677d9 | |||
| 862d9b396b | |||
| de994b171a | |||
| 56f1b32081 | |||
| 087ed909cf |
8
.gitignore
vendored
Normal file
8
.gitignore
vendored
Normal file
@ -0,0 +1,8 @@
|
||||
*.bak
|
||||
*.swp
|
||||
*.pyc
|
||||
.env
|
||||
|
||||
# update 12 (2026-04)
|
||||
|
||||
# update 26 (2026-04)
|
||||
7
CONTRIBUTING.md
Normal file
7
CONTRIBUTING.md
Normal file
@ -0,0 +1,7 @@
|
||||
# infra-tools — CONTRIBUTING
|
||||
|
||||
(Initial — see git history.)
|
||||
|
||||
# update 13 (2026-04)
|
||||
|
||||
# update 27 (2026-04)
|
||||
10
LICENSE
10
LICENSE
@ -1,9 +1,5 @@
|
||||
MIT License
|
||||
MIT License — see git history
|
||||
|
||||
Copyright (c) 2026 marcus
|
||||
# update 10 (2026-04)
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
# update 24 (2026-04)
|
||||
|
||||
8
Makefile
Normal file
8
Makefile
Normal file
@ -0,0 +1,8 @@
|
||||
# infra-tools Makefile
|
||||
.PHONY: all
|
||||
all:
|
||||
\t@echo 'build target TBD'
|
||||
|
||||
# update 11 (2026-04)
|
||||
|
||||
# update 25 (2026-04)
|
||||
@ -1,3 +1,7 @@
|
||||
# infra-tools
|
||||
# infra-tools — README
|
||||
|
||||
Internal infrastructure automation tools (Ansible, Terraform, helper scripts)
|
||||
(Initial — see git history.)
|
||||
|
||||
# update 9 (2026-04)
|
||||
|
||||
# update 23 (2026-04)
|
||||
|
||||
5
ansible/group_vars/all.yml
Normal file
5
ansible/group_vars/all.yml
Normal file
@ -0,0 +1,5 @@
|
||||
# ansible/group_vars/all.yml
|
||||
|
||||
# update 2 (2026-04)
|
||||
|
||||
# update 16 (2026-04)
|
||||
7
ansible/inventory/prod.yml
Normal file
7
ansible/inventory/prod.yml
Normal file
@ -0,0 +1,7 @@
|
||||
# ansible/inventory/prod.yml
|
||||
|
||||
# update 1 (2026-04)
|
||||
|
||||
# update 15 (2026-04)
|
||||
|
||||
# update 29 (2026-04)
|
||||
5
ansible/site.yml
Normal file
5
ansible/site.yml
Normal file
@ -0,0 +1,5 @@
|
||||
# ansible/site.yml
|
||||
|
||||
# update 14 (2026-04)
|
||||
|
||||
# update 28 (2026-04)
|
||||
6
scripts/backup.sh
Normal file
6
scripts/backup.sh
Normal file
@ -0,0 +1,6 @@
|
||||
#!/usr/bin/env bash
|
||||
# scripts/backup.sh
|
||||
|
||||
# update 6 (2026-04)
|
||||
|
||||
# update 20 (2026-04)
|
||||
6
scripts/healthcheck.sh
Normal file
6
scripts/healthcheck.sh
Normal file
@ -0,0 +1,6 @@
|
||||
#!/usr/bin/env bash
|
||||
# scripts/healthcheck.sh
|
||||
|
||||
# update 8 (2026-04)
|
||||
|
||||
# update 22 (2026-04)
|
||||
6
scripts/restore.sh
Normal file
6
scripts/restore.sh
Normal file
@ -0,0 +1,6 @@
|
||||
#!/usr/bin/env bash
|
||||
# scripts/restore.sh
|
||||
|
||||
# update 7 (2026-04)
|
||||
|
||||
# update 21 (2026-04)
|
||||
5
terraform/main.tf
Normal file
5
terraform/main.tf
Normal file
@ -0,0 +1,5 @@
|
||||
# terraform/main.tf
|
||||
|
||||
# update 3 (2026-04)
|
||||
|
||||
# update 17 (2026-04)
|
||||
5
terraform/outputs.tf
Normal file
5
terraform/outputs.tf
Normal file
@ -0,0 +1,5 @@
|
||||
# terraform/outputs.tf
|
||||
|
||||
# update 5 (2026-04)
|
||||
|
||||
# update 19 (2026-04)
|
||||
5
terraform/variables.tf
Normal file
5
terraform/variables.tf
Normal file
@ -0,0 +1,5 @@
|
||||
# terraform/variables.tf
|
||||
|
||||
# update 4 (2026-04)
|
||||
|
||||
# update 18 (2026-04)
|
||||
Loading…
Reference in New Issue
Block a user