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
--- | |
- hosts: windows_ctx_dc | |
vars_files: | |
- vars/generic.yml | |
roles: | |
- { role: ansible-role-win-dotnet48 } | |
tasks: |
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
- name: delegate update facts of terraform_dc1 | |
setup: | |
delegate_to: 'terraform_dc1' | |
delegate_facts: yes | |
become_method: runas | |
become_user: 'localadmin' | |
when: | |
- hostvars["terraform_dc1"]["ansible_ip_addresses"] is not defined | |
- name: display first ipv4 |
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
version: "3.3" | |
services: | |
traefik: | |
image: "traefik:v2.2" | |
container_name: "traefik" | |
command: | |
- "--log.level=DEBUG" | |
- "--api.insecure=true" |
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
--- | |
- hosts: localhost | |
tasks: | |
- name: Add Apt-Keys | |
apt_key: | |
url: '{{item.name}}' | |
state: present | |
with_items: |
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
pipeline: | |
power-pipe: | |
image: mcr.microsoft.com/powershell:ubuntu-16.04 | |
commands: | |
- pwsh test.ps1 $O365_USERNAME $O365_PASSWORD | |
secrets: [o365_username, o365_password] |