pratikghodekar
pratikghodekar

Reputation: 31

Will Ansible work in case of Windows Jump Server?

I wanted to know if we have Windows jump server instead or bastion server will Ansible work? if yes how can we achieve this

Upvotes: 0

Views: 434

Answers (1)

Kevin C
Kevin C

Reputation: 5750

This is possible, via Nginx.

Send the WinRM traffic to Nginx. Configure Nginx in a way that each target host has an their own url.

  • example.com/tn1
  • example.com/tn2

Let each node point to your my.fqdn.com/wsman.

Look at this pull request.

Upvotes: 1

Related Questions