doc: добавление документации по alb

This commit is contained in:
2026-02-06 14:35:56 +03:00
parent fa78ccf6ae
commit 11d05b03ed
15 changed files with 522 additions and 13 deletions
+20
View File
@@ -0,0 +1,20 @@
#cloud-config
hostname: ${hostname}
package_update: true
package_upgrade: false
packages:
- atop
users:
- name: ${username}
sudo: "ALL=(ALL) NOPASSWD:ALL"
groups: "sudo"
shell: /bin/bash
ssh_authorized_keys:
%{ if length(ssh_authorized_keys) > 0 ~}
%{ for key in ssh_authorized_keys ~}
- ${key}
%{ endfor ~}
%{ else ~}
[]
%{ endif ~}