Created
April 1, 2021 18:16
-
-
Save jimbo8098/25e29cbe0378e741d030fcb999cd7f8e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
dependency: | |
name: galaxy | |
options: | |
requirements-file: molecule/default/requirements.yml | |
ignore-errors: True | |
driver: | |
name: vagrant | |
platforms: | |
- name: windows-generic-server | |
box: trueability/windows-server-2019 | |
memory: 4096 | |
groups: | |
- windows | |
interfaces: | |
- network_name: public_network | |
- network_name: private_network | |
ip: "10.0.1.17" | |
provider_options: | |
gui: false | |
linked_clone: true | |
provisioner: | |
name: ansible | |
playbooks: | |
prepare: ./prepare.yml | |
ansible_args: | |
- -vvvvv | |
connection_options: | |
ansible_connection: winrm | |
ansible_host: 10.0.1.17 | |
ansible_port: 5985 | |
inventory: | |
group_vars: | |
windows: | |
ansible_winrm_transport: basic | |
ansible_password: vagrant | |
#ansible_winrm_scheme: http | |
#ansible_winrm_transport: kerberos | |
#ansible_winrm_kerberos_delegation: yes | |
hosts: | |
all: | |
vars: | |
hostname: testing | |
... | |
verifier: | |
name: ansible |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment