## Summary - Add pre-commit framework with hooks for YAML, Ansible, Python, shell, TOML, JSON, and secret detection - Fix all 91+ ansible-lint violations (variable naming, handler capitalization, changed_when) - Fix shellcheck warnings in mise-tasks scripts - Document pre-commit setup in README.md ## Deployment and Testing - [x] All pre-commit hooks pass (`uvx pre-commit run --all-files`) - [x] Test ansible playbook with `--check` mode - [x] Run `mise run indri-services-check` after deploy 🤖 Generated with [Claude Code](https://claude.com/claude-code) Reviewed-on: https://forge.tail8d86e.ts.net/eblume/blumeops/pulls/19
13 lines
523 B
Bash
Executable file
13 lines
523 B
Bash
Executable file
#!/usr/bin/env bash
|
|
#MISE description="Preview tailnet changes with Pulumi"
|
|
|
|
set -euo pipefail
|
|
|
|
TAILSCALE_OAUTH_CLIENT_ID=$(op --vault vg6xf6vvfmoh5hqjjhlhbeoaie item get wi6bkf7bcccwfy4eu776ab4p4u --fields client_id)
|
|
export TAILSCALE_OAUTH_CLIENT_ID
|
|
TAILSCALE_OAUTH_CLIENT_SECRET=$(op --vault vg6xf6vvfmoh5hqjjhlhbeoaie item get wi6bkf7bcccwfy4eu776ab4p4u --fields client_secret --reveal)
|
|
export TAILSCALE_OAUTH_CLIENT_SECRET
|
|
export TAILSCALE_TAILNET="tail8d86e.ts.net"
|
|
|
|
cd "$(dirname "$0")/../pulumi"
|
|
pulumi preview "$@"
|