bf1bb49c38
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
18 lines
443 B
YAML
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"
|