professional-service/examples/vpn-usecases/modules/stackit-sna-with-debug-machine/debug-user.yml
Mauritz Uphoff 91efc3cd88
All checks were successful
Default CI / Check for Open TODOs (pull_request) Successful in 26s
Default CI / Secret Scanner (TruffleHog) (pull_request) Successful in 47s
Default CI / Pre-Commit Hooks (pull_request) Successful in 2m28s
fix(cloud-init): remove license header for cloud-init files
2026-06-26 08:56:36 +02:00

25 lines
834 B
YAML

#cloud-config
# ---------------------------------------------------------------------------
# Example cloud-init for Linux instances (RHEL / Debian).
# Creates a local admin user for initial access.
#
# IMPORTANT: Replace the password hash below with a hash of your own
# secure password before deploying. Never use a shared or well-known
# default password in production.
#
# Generate a SHA-512 hash on Linux/macOS:
# openssl passwd -6 "YourPassword"
# ---------------------------------------------------------------------------
users:
- name: debug
groups: sudo
shell: /bin/bash
sudo: ["ALL=(ALL) NOPASSWD:ALL"]
lock_passwd: false
# debug123
passwd: "$6$dIIA5b1oK7qi89.P$MH9SSMtnzCo8QvvUnVoCE5e1c7FY0NUgB4dpsv5JDq9zpRDiTpfiYtM5DitiJIuQWvZ7T1emTTgKaBufayaIW."
chpasswd:
expire: false
ssh_pwauth: true