Salt MinionΒΆ

For a full list of keys, refer to the Salt Minion module schema.

 1#cloud-config
 2salt_minion:
 3  conf:
 4    file_client: local
 5    fileserver_backend: [gitfs]
 6    gitfs_remotes: ['https://github.com/_user_/_repo_.git']
 7    master: salt.example.com
 8  config_dir: /etc/salt
 9  grains:
10    role: [web]
11  pkg_name: salt-minion
12  pki_dir: /etc/salt/pki/minion
13  private_key: '------BEGIN PRIVATE KEY------
14
15    <key data>
16
17    ------END PRIVATE KEY-------
18
19    '
20  public_key: '------BEGIN PUBLIC KEY-------
21
22    <key data>
23
24    ------END PUBLIC KEY-------
25
26    '
27  service_name: salt-minion