Skip to content

Commit

Permalink
Merge pull request #60 from murdok5/production
Browse files Browse the repository at this point in the history
enable insecure winrm for discovery demos
  • Loading branch information
ipcrm authored Nov 16, 2017
2 parents 67c7cc4 + 0f0be9c commit 3270ad8
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions site/profile/manifests/platform/baseline/windows/bootstrap.pp
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,17 @@

}

registry::value { 'enable insecure winrm':
key => 'HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WinRM\Service',
value => 'AllowUnencryptedTraffic',
data => "1",
type => 'dword',
notify => Service['WinRM'],
}

service {'WinRM':
ensure => 'running',
enable => true
}

}

0 comments on commit 3270ad8

Please sign in to comment.