Building a Language Server for Salt States
Salt States
SaltStack is a configuration management software like Ansible or Puppet which allows you to configure your machines via so-called salt states. Salt states are YAML documents with support for Jinja2 templates:
mysql:
pkg.installed:
- name: mysql
service.running:
- name: mysql
web_server:
pkg.installed:
{% if grains['os_family'] == 'RedHat' %}
- name …