为什么我使用 saltstack apache-formula 无法设置“id”变量

为什么我使用 saltstack apache-formula 无法设置“id”变量

为什么我使用 saltstack apache-formula 无法设置“id”变量? 我的代码如下?

apache:
    sites:

        changed.com:

            template_file: salt://salt/formulas/salt/apache-formula/apache/vhosts/standard.tmpl
            template_engine: jinja

            interface: '*'
            port: '80'

           ServerName: {{ id }}
           ServerAdmin: webmaster@{{ id }}
           LogLevel: Debug
           ErrorLog: {{ logdir }}/{{ id }}-error.log

           WSGIScriptAlias: / /var/www/project2/django.wsgi

错误信息如下:

Rendering SLS "base:netchosis" failed: Jinja variable 'id' is undefined; line 15


        port: '80'

        ServerName: {{ id }}
        ServerAdmin: webmaster@{{ id }}
        LogLevel: Debug 
        ErrorLog: {{ logdir }}/{{ id }}-error.log    <======================

        WSGIScriptAlias: / /var/www/project2/django.wsgi

我期望 ID 是“changed.com”,谢谢。

答案1

示例支柱文件如下:https://github.com/saltstack-formulas/apache-formula/blob/master/pillar.example

我建议每个缩进级别使用 2 个空格并确保它们对齐。

相关内容