├── .gitignore ├── LICENSE ├── README.md ├── ansible └── openssh.windows.ansible.yml ├── packer ├── 0.openssh-base.windows.packer.json └── 1.vs2019.windows.packer.json └── support ├── ConfigureRemotingForAnsible.ps1 ├── administrators_authorized_keys └── fixkeypermissions.ps1 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comerford/windows-ssh-base-ami/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comerford/windows-ssh-base-ami/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comerford/windows-ssh-base-ami/HEAD/README.md -------------------------------------------------------------------------------- /ansible/openssh.windows.ansible.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comerford/windows-ssh-base-ami/HEAD/ansible/openssh.windows.ansible.yml -------------------------------------------------------------------------------- /packer/0.openssh-base.windows.packer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comerford/windows-ssh-base-ami/HEAD/packer/0.openssh-base.windows.packer.json -------------------------------------------------------------------------------- /packer/1.vs2019.windows.packer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comerford/windows-ssh-base-ami/HEAD/packer/1.vs2019.windows.packer.json -------------------------------------------------------------------------------- /support/ConfigureRemotingForAnsible.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comerford/windows-ssh-base-ami/HEAD/support/ConfigureRemotingForAnsible.ps1 -------------------------------------------------------------------------------- /support/administrators_authorized_keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comerford/windows-ssh-base-ami/HEAD/support/administrators_authorized_keys -------------------------------------------------------------------------------- /support/fixkeypermissions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comerford/windows-ssh-base-ami/HEAD/support/fixkeypermissions.ps1 --------------------------------------------------------------------------------