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
# .zshrc | |
autoload -Uz compinit | |
compinit | |
VAULT_ENCRYPTION_KEY="example" | |
# export | |
export PATH="$PATH:/Users/michael.kosir/.hcv/bin" | |
export DOCKER_HOST="unix:///Users/$USER/.colima/docker.sock" |
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
# Stage 0 | |
# Installs dependencies and builds the application | |
# Artifacts will be copied to the final image | |
FROM debian:12-slim AS build | |
ARG PYTHON_VERSION="3.13" | |
COPY --from=ghcr.io/astral-sh/uv:latest /uv /bin | |
ENV UV_COMPILE_BYTECODE="1" |
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
export URL="https://apt.releases.hashicorp.com/gpg" | |
curl -fs $URL | gpg --with-colons --with-fingerprint --quiet | grep -oE "[0-9A-F]{40}" |
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
terraform { | |
required_providers { | |
terracurl = { | |
source = "devops-rob/terracurl" | |
version = "~> 1.2" | |
} | |
} | |
} | |
provider "terracurl" {} |
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
# cloud-config | |
# Get PGP fingerprint | |
# export URL="https://apt.releases.hashicorp.com/gpg" | |
# curl -fs $URL | gpg --with-colons --with-fingerprint --quiet | grep -oE "[0-9A-F]{40}" | |
package_update: true | |
package_upgrade: true | |
apt: |