We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cannot add multiple env vars only 1 accepted using:
- name: Create IIS Application Pool community.windows.win_iis_webapppool: name: MouzakisAnsibleAppPool state: present attributes: managedPipelineMode: Classic queueLength: 2000 processModel.identityType: SpecificUser processModel.userName: '{{ ansible_user }}' processModel.password: '{{ ansible_password }}' processModel.loadUserProfile: true processModel.maxProcesses: 20 environmentVariables: - name: foo value: bar
From the above I see the env var added but I cannot specify a list of them no matter what I try...
for example:
TRY 1
- name: Create IIS Application Pool community.windows.win_iis_webapppool: name: MouzakisAnsibleAppPool state: present attributes: managedPipelineMode: Classic queueLength: 2000 processModel.identityType: SpecificUser processModel.userName: '{{ ansible_user }}' processModel.password: '{{ ansible_password }}' processModel.loadUserProfile: true processModel.maxProcesses: 20 environmentVariables: - name: foo value: bar - name: foo2 value: bar2
The above doesn't work....
If I try to add multiple environmentVariables attributes only the last gets applied for example:
TRY 2
- name: Create IIS Application Pool community.windows.win_iis_webapppool: name: MouzakisAnsibleAppPool state: present attributes: managedPipelineMode: Classic queueLength: 2000 processModel.identityType: SpecificUser processModel.userName: '{{ ansible_user }}' processModel.password: '{{ ansible_password }}' processModel.loadUserProfile: true processModel.maxProcesses: 20 environmentVariables: - name: foo value: bar environmentVariables: - name: last1 value: only_applies
How can I add multiple env vars?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
cannot add multiple env vars only 1 accepted using:
From the above I see the env var added but I cannot specify a list of them no matter what I try...
for example:
TRY 1
The above doesn't work....
If I try to add multiple environmentVariables attributes only the last gets applied for example:
TRY 2
How can I add multiple env vars?
The text was updated successfully, but these errors were encountered: