Ansible - Windows path variable
问题 Is there away to use variables and string together? For example I would like to, define my path's and other options combining variables and string? #Add Directory - name: Add Directory win_file: path: "{{directory_path}}\AppName-{{env}}" state: directory #Add IUSR to directory path - name: ADD IUSR win_acl: path: "{{directory_path}}\AppName-{{env}}" user: IUSR rights: Read type: allow state: present propagation: 'NoPropagateInherit' #Add website - name: "{{env}} Add App Name" win_iis_website: