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
| --- | |
| - | |
| gather_facts: true | |
| hosts: all | |
| name: Prepare | |
| tasks: | |
| - | |
| debug: | |
| msg: "{{ ansible_facts['distribution'] }}" | |
| name: "print OS version" |
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: Destroy | |
| hosts: localhost | |
| connection: local | |
| gather_facts: false | |
| vars: | |
| resource_group_name: ansible-dev-rhel8-yourinitials | |
| 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
| --- | |
| - | |
| gather_facts: true | |
| hosts: all | |
| name: Prepare | |
| tasks: | |
| - | |
| debug: | |
| msg: "{{ ansible_facts['distribution'] }}" | |
| name: "print OS version" |
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
| wheel | |
| requests==2.24.0 | |
| yamllint==1.25.0 | |
| pywinrm==0.4.1 | |
| junit-xml==1.9 | |
| ansible==2.10.2 | |
| ansible-lint==4.3.7 | |
| molecule==3.1.5 | |
| molecule-azure==0.5.0 |
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
| packaging | |
| requests[security] | |
| xmltodict | |
| azure-cli-core==2.11.1 | |
| azure-cli-nspkg==3.0.2 | |
| azure-common==1.1.11 | |
| azure-mgmt-authorization==0.51.1 | |
| azure-mgmt-batch==5.0.1 | |
| azure-mgmt-cdn==3.0.0 | |
| azure-mgmt-compute==10.0.0 |
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
| param( | |
| # Define parameters and values | |
| [string]$newWebLanguage="en-au", | |
| [string]$desktopConfigFile=“$env:userprofile\\AppData\Roaming\Microsoft\Teams\desktop-config.json”, | |
| [string]$cookieFile="$env:userprofile\\AppData\Roaming\Microsoft\teams\Cookies", | |
| [string]$registryPath="HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall", | |
| [string]$registryDisplayName="Microsoft Teams", | |
| [string]$processName="Teams" | |
| ) |
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
| param( | |
| # Define parameters and values | |
| [string]$newWebLanguage="en-au", | |
| [bool]$newDisableGpu=$true, | |
| [string]$desktopConfigFile=“$env:userprofile\\AppData\Roaming\Microsoft\Teams\desktop-config.json”, | |
| [string]$cookieFile="$env:userprofile\\AppData\Roaming\Microsoft\teams\Cookies", | |
| [string]$registryPath="HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall", | |
| [string]$registryDisplayName="Microsoft Teams", | |
| [string]$processName="Teams" | |
| ) |
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
| terraform { | |
| required_version = "~> 0.13.0" | |
| required_providers { | |
| azurerm = { | |
| source = "hashicorp/azurerm" | |
| version = "~> 2.29.0" | |
| } | |
| } | |
| } |
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
| terraform { | |
| required_version = "~> 0.13.0" | |
| required_providers { | |
| azurerm = { | |
| source = "hashicorp/azurerm" | |
| version = "~> 2.29.0" | |
| } | |
| } | |
| } |
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
| #!/bin/bash | |
| # Update all packages that have available updates. | |
| sudo apt-get update | |
| sudo apt upgrade -y | |
| # Install ansible developer requirements | |
| pip3 install wheel --quiet | |
| pip3 install pywinrm --quiet | |
| pip3 install requests --quiet |