├── .gitgore ├── Reverse-Proxy ├── Configure Reverse Proxy.ps1 ├── Readme.md ├── config.sh ├── nginx │ ├── dockerfile │ └── nginx.conf.template.simple └── tftpd │ └── dockerfile └── vSphere-Deploy ├── DeployVMWare.ps1 ├── README.md ├── certificates ├── ConvertTo-PEMFormat.ps1 ├── Copy-CertificateToHost.ps1 ├── Get-VMDir.ps1 ├── Import-RootCertificate.ps1 ├── Invoke-CertificateMint.ps1 ├── Invoke-CertificateMintResume.ps1 ├── Invoke-OpenSSL.ps1 ├── Invoke-VMCACertificateMint.ps1 ├── Move-UserCerts.ps1 ├── New-CSR.ps1 ├── New-SolutionCSR.ps1 ├── New-UserPEMFiles.ps1 ├── New-VMCACSR.ps1 ├── Rename-VMDir.ps1 └── Test-OpenSSL.ps1 ├── json ├── 1. list of json files.txt ├── OS.json ├── adinfo.json ├── autodeploy.json ├── certs.json ├── clusters.json ├── folders.json ├── licenses.json ├── permissions.json ├── plugins.json ├── roles.json ├── services.json ├── sites.json ├── summary.json ├── vcsa.json ├── vdswitches.json └── vlans.json ├── private ├── Add-Licensing.ps1 ├── Add-Null.ps1 ├── Add-Roles.ps1 ├── Add-SSOAdminGroups.ps1 ├── ConvertTo-Excel.ps1 ├── ConvertTo-Hashtable.ps1 ├── ConvertTo-OSString.ps1 ├── Copy-FileToServer.ps1 ├── Get-UrlStatus.ps1 ├── Import-HostRootCertificate.ps1 ├── Import-JsonData.ps1 ├── Import-YamlData.ps1 ├── Install-OpenSSL.ps1 ├── Invoke-ExecuteScript.ps1 ├── Join-ADDomain.ps1 ├── Load-Module.ps1 ├── New-AuthProxyService.ps1 ├── New-AutoDeployRule.ps1 ├── New-AutoDeployService.ps1 ├── New-CertificatePair.ps1 ├── New-Folders.ps1 ├── New-IdentitySourcevCenter65.ps1 ├── New-IdentitySourcevCenter67.ps1 ├── New-NetDumpsterService.ps1 ├── New-Permissions.ps1 ├── New-TFTPService.ps1 ├── New-VCSADeploy.ps1 ├── Remove-Null.ps1 ├── Root-Path.ps1 ├── Save-Json.ps1 ├── Save-Yaml.ps1 ├── Skip-SSLTrustIssues.ps1 └── Write-SeparatorLine.ps1 ├── profile.vpf ├── vsphere-configs.xlsx └── yaml ├── 1. list of yml files.txt ├── OS.yml ├── adinfo.yml ├── autodeploy.yml ├── certs.yml ├── clusters.yml ├── folders.yml ├── licenses.yml ├── permissions.yml ├── plugins.yml ├── roles.yml ├── services.yml ├── sites.yml ├── summary.yml ├── vcsa.yml ├── vdswitches.yml └── vlans.yml /.gitgore: -------------------------------------------------------------------------------- 1 | **/.DS_Store -------------------------------------------------------------------------------- /Reverse-Proxy/Configure Reverse Proxy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/Reverse-Proxy/Configure Reverse Proxy.ps1 -------------------------------------------------------------------------------- /Reverse-Proxy/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/Reverse-Proxy/Readme.md -------------------------------------------------------------------------------- /Reverse-Proxy/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/Reverse-Proxy/config.sh -------------------------------------------------------------------------------- /Reverse-Proxy/nginx/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/Reverse-Proxy/nginx/dockerfile -------------------------------------------------------------------------------- /Reverse-Proxy/nginx/nginx.conf.template.simple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/Reverse-Proxy/nginx/nginx.conf.template.simple -------------------------------------------------------------------------------- /Reverse-Proxy/tftpd/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/Reverse-Proxy/tftpd/dockerfile -------------------------------------------------------------------------------- /vSphere-Deploy/DeployVMWare.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/DeployVMWare.ps1 -------------------------------------------------------------------------------- /vSphere-Deploy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/README.md -------------------------------------------------------------------------------- /vSphere-Deploy/certificates/ConvertTo-PEMFormat.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/certificates/ConvertTo-PEMFormat.ps1 -------------------------------------------------------------------------------- /vSphere-Deploy/certificates/Copy-CertificateToHost.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/certificates/Copy-CertificateToHost.ps1 -------------------------------------------------------------------------------- /vSphere-Deploy/certificates/Get-VMDir.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/certificates/Get-VMDir.ps1 -------------------------------------------------------------------------------- /vSphere-Deploy/certificates/Import-RootCertificate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/certificates/Import-RootCertificate.ps1 -------------------------------------------------------------------------------- /vSphere-Deploy/certificates/Invoke-CertificateMint.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/certificates/Invoke-CertificateMint.ps1 -------------------------------------------------------------------------------- /vSphere-Deploy/certificates/Invoke-CertificateMintResume.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/certificates/Invoke-CertificateMintResume.ps1 -------------------------------------------------------------------------------- /vSphere-Deploy/certificates/Invoke-OpenSSL.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/certificates/Invoke-OpenSSL.ps1 -------------------------------------------------------------------------------- /vSphere-Deploy/certificates/Invoke-VMCACertificateMint.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/certificates/Invoke-VMCACertificateMint.ps1 -------------------------------------------------------------------------------- /vSphere-Deploy/certificates/Move-UserCerts.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/certificates/Move-UserCerts.ps1 -------------------------------------------------------------------------------- /vSphere-Deploy/certificates/New-CSR.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/certificates/New-CSR.ps1 -------------------------------------------------------------------------------- /vSphere-Deploy/certificates/New-SolutionCSR.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/certificates/New-SolutionCSR.ps1 -------------------------------------------------------------------------------- /vSphere-Deploy/certificates/New-UserPEMFiles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/certificates/New-UserPEMFiles.ps1 -------------------------------------------------------------------------------- /vSphere-Deploy/certificates/New-VMCACSR.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/certificates/New-VMCACSR.ps1 -------------------------------------------------------------------------------- /vSphere-Deploy/certificates/Rename-VMDir.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/certificates/Rename-VMDir.ps1 -------------------------------------------------------------------------------- /vSphere-Deploy/certificates/Test-OpenSSL.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/certificates/Test-OpenSSL.ps1 -------------------------------------------------------------------------------- /vSphere-Deploy/json/1. list of json files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/json/1. list of json files.txt -------------------------------------------------------------------------------- /vSphere-Deploy/json/OS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/json/OS.json -------------------------------------------------------------------------------- /vSphere-Deploy/json/adinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/json/adinfo.json -------------------------------------------------------------------------------- /vSphere-Deploy/json/autodeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/json/autodeploy.json -------------------------------------------------------------------------------- /vSphere-Deploy/json/certs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/json/certs.json -------------------------------------------------------------------------------- /vSphere-Deploy/json/clusters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/json/clusters.json -------------------------------------------------------------------------------- /vSphere-Deploy/json/folders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/json/folders.json -------------------------------------------------------------------------------- /vSphere-Deploy/json/licenses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/json/licenses.json -------------------------------------------------------------------------------- /vSphere-Deploy/json/permissions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/json/permissions.json -------------------------------------------------------------------------------- /vSphere-Deploy/json/plugins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/json/plugins.json -------------------------------------------------------------------------------- /vSphere-Deploy/json/roles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/json/roles.json -------------------------------------------------------------------------------- /vSphere-Deploy/json/services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/json/services.json -------------------------------------------------------------------------------- /vSphere-Deploy/json/sites.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/json/sites.json -------------------------------------------------------------------------------- /vSphere-Deploy/json/summary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/json/summary.json -------------------------------------------------------------------------------- /vSphere-Deploy/json/vcsa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/json/vcsa.json -------------------------------------------------------------------------------- /vSphere-Deploy/json/vdswitches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/json/vdswitches.json -------------------------------------------------------------------------------- /vSphere-Deploy/json/vlans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/json/vlans.json -------------------------------------------------------------------------------- /vSphere-Deploy/private/Add-Licensing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/private/Add-Licensing.ps1 -------------------------------------------------------------------------------- /vSphere-Deploy/private/Add-Null.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/private/Add-Null.ps1 -------------------------------------------------------------------------------- /vSphere-Deploy/private/Add-Roles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/private/Add-Roles.ps1 -------------------------------------------------------------------------------- /vSphere-Deploy/private/Add-SSOAdminGroups.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/private/Add-SSOAdminGroups.ps1 -------------------------------------------------------------------------------- /vSphere-Deploy/private/ConvertTo-Excel.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/private/ConvertTo-Excel.ps1 -------------------------------------------------------------------------------- /vSphere-Deploy/private/ConvertTo-Hashtable.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/private/ConvertTo-Hashtable.ps1 -------------------------------------------------------------------------------- /vSphere-Deploy/private/ConvertTo-OSString.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/private/ConvertTo-OSString.ps1 -------------------------------------------------------------------------------- /vSphere-Deploy/private/Copy-FileToServer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/private/Copy-FileToServer.ps1 -------------------------------------------------------------------------------- /vSphere-Deploy/private/Get-UrlStatus.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/private/Get-UrlStatus.ps1 -------------------------------------------------------------------------------- /vSphere-Deploy/private/Import-HostRootCertificate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/private/Import-HostRootCertificate.ps1 -------------------------------------------------------------------------------- /vSphere-Deploy/private/Import-JsonData.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/private/Import-JsonData.ps1 -------------------------------------------------------------------------------- /vSphere-Deploy/private/Import-YamlData.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/private/Import-YamlData.ps1 -------------------------------------------------------------------------------- /vSphere-Deploy/private/Install-OpenSSL.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/private/Install-OpenSSL.ps1 -------------------------------------------------------------------------------- /vSphere-Deploy/private/Invoke-ExecuteScript.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/private/Invoke-ExecuteScript.ps1 -------------------------------------------------------------------------------- /vSphere-Deploy/private/Join-ADDomain.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/private/Join-ADDomain.ps1 -------------------------------------------------------------------------------- /vSphere-Deploy/private/Load-Module.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/private/Load-Module.ps1 -------------------------------------------------------------------------------- /vSphere-Deploy/private/New-AuthProxyService.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/private/New-AuthProxyService.ps1 -------------------------------------------------------------------------------- /vSphere-Deploy/private/New-AutoDeployRule.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/private/New-AutoDeployRule.ps1 -------------------------------------------------------------------------------- /vSphere-Deploy/private/New-AutoDeployService.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/private/New-AutoDeployService.ps1 -------------------------------------------------------------------------------- /vSphere-Deploy/private/New-CertificatePair.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/private/New-CertificatePair.ps1 -------------------------------------------------------------------------------- /vSphere-Deploy/private/New-Folders.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/private/New-Folders.ps1 -------------------------------------------------------------------------------- /vSphere-Deploy/private/New-IdentitySourcevCenter65.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/private/New-IdentitySourcevCenter65.ps1 -------------------------------------------------------------------------------- /vSphere-Deploy/private/New-IdentitySourcevCenter67.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/private/New-IdentitySourcevCenter67.ps1 -------------------------------------------------------------------------------- /vSphere-Deploy/private/New-NetDumpsterService.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/private/New-NetDumpsterService.ps1 -------------------------------------------------------------------------------- /vSphere-Deploy/private/New-Permissions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/private/New-Permissions.ps1 -------------------------------------------------------------------------------- /vSphere-Deploy/private/New-TFTPService.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/private/New-TFTPService.ps1 -------------------------------------------------------------------------------- /vSphere-Deploy/private/New-VCSADeploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/private/New-VCSADeploy.ps1 -------------------------------------------------------------------------------- /vSphere-Deploy/private/Remove-Null.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/private/Remove-Null.ps1 -------------------------------------------------------------------------------- /vSphere-Deploy/private/Root-Path.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/private/Root-Path.ps1 -------------------------------------------------------------------------------- /vSphere-Deploy/private/Save-Json.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/private/Save-Json.ps1 -------------------------------------------------------------------------------- /vSphere-Deploy/private/Save-Yaml.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/private/Save-Yaml.ps1 -------------------------------------------------------------------------------- /vSphere-Deploy/private/Skip-SSLTrustIssues.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/private/Skip-SSLTrustIssues.ps1 -------------------------------------------------------------------------------- /vSphere-Deploy/private/Write-SeparatorLine.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/private/Write-SeparatorLine.ps1 -------------------------------------------------------------------------------- /vSphere-Deploy/profile.vpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/profile.vpf -------------------------------------------------------------------------------- /vSphere-Deploy/vsphere-configs.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/vsphere-configs.xlsx -------------------------------------------------------------------------------- /vSphere-Deploy/yaml/1. list of yml files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/yaml/1. list of yml files.txt -------------------------------------------------------------------------------- /vSphere-Deploy/yaml/OS.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/yaml/OS.yml -------------------------------------------------------------------------------- /vSphere-Deploy/yaml/adinfo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/yaml/adinfo.yml -------------------------------------------------------------------------------- /vSphere-Deploy/yaml/autodeploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/yaml/autodeploy.yml -------------------------------------------------------------------------------- /vSphere-Deploy/yaml/certs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/yaml/certs.yml -------------------------------------------------------------------------------- /vSphere-Deploy/yaml/clusters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/yaml/clusters.yml -------------------------------------------------------------------------------- /vSphere-Deploy/yaml/folders.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/yaml/folders.yml -------------------------------------------------------------------------------- /vSphere-Deploy/yaml/licenses.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/yaml/licenses.yml -------------------------------------------------------------------------------- /vSphere-Deploy/yaml/permissions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/yaml/permissions.yml -------------------------------------------------------------------------------- /vSphere-Deploy/yaml/plugins.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/yaml/plugins.yml -------------------------------------------------------------------------------- /vSphere-Deploy/yaml/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/yaml/roles.yml -------------------------------------------------------------------------------- /vSphere-Deploy/yaml/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/yaml/services.yml -------------------------------------------------------------------------------- /vSphere-Deploy/yaml/sites.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/yaml/sites.yml -------------------------------------------------------------------------------- /vSphere-Deploy/yaml/summary.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/yaml/summary.yml -------------------------------------------------------------------------------- /vSphere-Deploy/yaml/vcsa.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/yaml/vcsa.yml -------------------------------------------------------------------------------- /vSphere-Deploy/yaml/vdswitches.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/yaml/vdswitches.yml -------------------------------------------------------------------------------- /vSphere-Deploy/yaml/vlans.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vanarga/vmware/HEAD/vSphere-Deploy/yaml/vlans.yml --------------------------------------------------------------------------------