bifrost/releasenotes/notes/create-cloud-config-e4e15a422bc04adf.yaml
vguillard bf1bb49c38 Feature: Enable user_data's file generation
This feature allow custom user-data's file generation by the user.
It is usefull for example when user needs to set up an advanced ssh configuration (special user, SSH certificate-based authentication)

Signed-off-by: vguillard <vincent.guillard@b-com.com>
Story: 2010475
Task: 47036
Change-Id: I2831e58d84f1da03485f8315eccdd2e79231e584
2023-01-19 10:51:21 +01:00

18 lines
443 B
YAML

---
features:
- |
bifrost introduce now the ``user_data content`` variable
which allows to the user to provide its custom cloud-config file
For example:
.. code-block:: yaml
user_data_content: |
users:
name: myuser
sudo: ALL=(ALL) NOPASSWD:ALL
shell: /bin/bash
passwd: <HASH_OF_MY_PASSWORD>
lock_passwd: false
timezone: "Europe/Paris"