Migration from Salt Core

Important

The vault modules found in Salt >=3007 have the same core, so migration from these versions is frictionless. There are some further deprecations you should be aware of though.

This Salt Extension is based on a significant, but backwards-compatible refactoring of the vault modules found in Salt core <3007. If you’re migrating from these older modules, there is a single necessary change to make:

peer_run

This extension uses different endpoints for configuration and credential distribution. While it provides a fallback for legacy config to keep working, this requires unnecessary roundtrips and will be removed in some future release.

What was previously

peer_run:
  .*:
    - vault.generate_token

should be changed to:

peer_run:
  .*:
    - vault.get_config
    - vault.generate_new_token

Notable changes

The changelog for version 1.0.0 gives an overview of notable improvements versus the previous Salt core <3007 modules.

Changed config structure

Since there were many additions and changes, a new configuration structure was introduced. The old one is still recognized, but deprecated. Please take measures to migrate to the new structure at your discretion. The compatibility layer will be removed in some future release.

Renamed

Deprecated functions

Execution module

Runner

Deprecated defaults/configuration

There are some planned changes not found in any version of Salt core.

Execution module

  • vault.list_secrets used to return a single-key dict like {keys: [a, b]}. This will be changed to returning the list only in the next major release. Set keys_only=true when calling it to migrate early and avoid warnings.

SDB module

  • The SDB module used to overwrite the whole secret when writing a single key. This behavior can be configured now with the patch profile value. This value defaults to false for now, but will be changed to true in the next major release since it is usually the desired behavior and in line with other SDB modules.

Pillar module

  • The vault pillar module was previously configured in two styles:

    ext_pillar:
      - vault: path=secret/salt
      - vault:
          conf: path=secret/salt2
    

    This has been simplified to:

    ext_pillar:
      - vault: secret/salt
      - vault:
          path: secret/salt2
    

    Please update your configuration, the previous method will stop working in the next major release.