A ton of fixes for win_iis_webapppool were merged this morning, so they should make Ansible 2.3. Jon now imports C:\Windows\system32\inetsrv\Microsoft.Web.Administration.dll, which is what makes it possible to reach all the indexes we were previously getting undefined.
There's a notable change from how I was doing workarounds for 2.2 and older to use readable strings instead of having to lookup integer values. For example, processModel.identityType:3 will now be processModel.identityType:SpecificUser. Another - managedPipelineMode:0 will be managedPipelineMode:Integrated. The docs in the pull request note at least one of those in the example output: https://github.com/ansible/ansible/pull/20680 *David Norman, Ph.D., CISSP-ISSAP, CSSLP, CIPT* Development Operations Engineer 925 North Point Parkway, Ste 350 Alpharetta, GA 30005 [email protected] www.cioxhealth.com On Tue, Nov 15, 2016 at 8:01 AM, 'J Hawkesworth' via Ansible Project < [email protected]> wrote: > By the way, if you have the opportunity, please could you test my changes > to win_iis_webappool module here: > https://github.com/ansible/ansible-modules-extras/pull/3257 > the version lets to set enumerated values in the configuration such as ' > managedPipelineMode' > and also returns the possible enumeration values in the response. > > Many thanks, > > Jon > On Monday, November 14, 2016 at 10:21:40 AM UTC, J Hawkesworth wrote: >> >> The only way my colleagues have found to do this is via appcmd. If you >> are on ansible 2.2. you could use win_command instead of raw but the rest >> of the syntax would probably be the same as below: >> >> - name: Add authentication for Site >> raw: 'C:\Windows\System32\inetsrv\appcmd.exe set config >> "Site/" >> -section:system.webServer/security/authentication/anonymousAuthentication >> /enabled:"True" /commit:apphost' >> >> - name: Add authentication user for Site >> raw: 'C:\Windows\System32\inetsrv\appcmd.exe set config "Site/" >> -section:system.webServer/security/authentication/anonymousAuthentication >> /userName:{{ iis_domain }}\{{ iis_user }} /password:{{ iis_cred }} >> /commit:apphost' >> >> HTH >> >> Jon >> >> On Saturday, November 12, 2016 at 1:31:30 AM UTC, philip shangguan wrote: >>> >>> I am trying to config .NET application pool and I need to change the >>> "Identity" to use "Custom account" and then enter the user name and >>> password. It seems I can not find the correct attribute names to use in the >>> playbook to have those values set. I tried to search them in: >>> >>> https://msdn.microsoft.com/en-us/library/microsoft.web.admin >>> istration.applicationpool_properties(v=vs.90).aspx >>> >>> but was not successful. This link seems have the right info. but hard to >>> figure out how to add them into the playbook for "attributes" >>> >>> Thanks, >>> Philip >>> >>> >>> >>> -- > You received this message because you are subscribed to the Google Groups > "Ansible Project" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > To view this discussion on the web visit https://groups.google.com/d/ > msgid/ansible-project/86d866a6-0a0b-4237-a038-f32e1afdf915%40googlegroups. > com > <https://groups.google.com/d/msgid/ansible-project/86d866a6-0a0b-4237-a038-f32e1afdf915%40googlegroups.com?utm_medium=email&utm_source=footer> > . > > For more options, visit https://groups.google.com/d/optout. > -- CONFIDENTIALITY NOTICE: The information in this e-mail message, and any attachment, is intended for the sole use of the individual and entity to whom it is addressed. This information may be privileged, confidential, and protected from disclosure. If you are not the intended recipient you are hereby notified that you have received this communication in error and that any review, disclosure, dissemination, distribution or copying of it, or its, contents, is strictly prohibited. If you think that you have received this e-mail message in error please e-mail the sender and destroy all copies of this communication and any attachments. Thank you. ------------------------------------------------------------------------- This message was secured by ZixCorp(R). -- You received this message because you are subscribed to the Google Groups "Ansible Project" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/ansible-project/CAFHcQcjCudwnBuWpNN5Q-Z0A0jK6BjB23C5GqohtpSsmHu0yNw%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
