start describing first setup

This commit is contained in:
L3D 2021-12-13 23:10:38 +01:00
parent a68c0e553d
commit f86a0d38be
Signed by: L3D
GPG Key ID: CD08445BFF4313D1
2 changed files with 37 additions and 1 deletions

View File

@ -33,5 +33,30 @@ Get-Host | Select-Object Version
#### Windows Version #### Windows Version
```ps1 ```ps1
# In your Powershell # In your Powershell
(Get-ItemProperty "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion").ReleaseId (Get-ItemProperty "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion").ProductName
``` ```
Configure Ansible Access (WinRM Setup)
----------------------------------------
### configure WinRM Access
Configure WinRM with the ``ConfigureRemotingForAnsible.ps1`` Script as described in [docs.ansible.com/ansible/latest/user_guide/windows_setup.html#winrm-setup](https://docs.ansible.com/ansible/latest/user_guide/windows_setup.html#winrm-setup) in your WINDOWS PowerShell.
### configure ansible setup
+ add your host to the ``hosts.ini`` file.
+ add the following variables in the ``host_vars``:
```yaml
---
# host_vars/$hostname/vars.yml
ansible_connection: winrm
ansible_user: 'Windows_Admin_User'
ansible_password: 'Your_Windows_Admin_Password'
ansible_winrm_server_cert_validation: ignore
```
Ansible deploy host requirements
----------------------------------
```bash
pip install pywinrm
```

11
ansible.cfg Normal file
View File

@ -0,0 +1,11 @@
[defaults]
inventory = ./hosts.ini
retry_files_enabled = false
nocows = true
log_path = $HOME/.ansible/ansible.log
forks = 20
gathering = smart
fact_caching = jsonfile
fact_caching_connection = $HOME/.ansible/facts