├── Ansible ├── DumpEnvironment │ ├── README.md │ └── playbook.yml └── Linux │ ├── GalaxyExample │ ├── PatchingLinuxServers.md │ ├── README.md │ ├── playbook.yml │ └── requirements.yml │ ├── GalaxyExample2 │ ├── README.md │ ├── playbook.yml │ └── requirements.yml │ └── linuxDomainJoin.yml ├── Cloudformation └── CFSpecTemplate │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── README.md │ └── S3 Variable Map Example.json ├── Groovy ├── AD - Create Morpheus Domain.groovy ├── ExtendInstanceShutdownPolicy.groovy ├── updateAnsibleTowerInvPerm.groovy └── updateDomainTenantPermissions.groovy ├── JavaScript └── Option Lists │ ├── aws_ami_by_region_translation.js │ ├── aws_regions_translation.js │ └── current_user_top_level_ldap_attribute.js ├── LICENSE.txt ├── Packer ├── README.md ├── packer-centos-7.9 │ ├── .gitignore │ ├── build_defaults.auto.pkrvars.hcl.dist │ ├── build_vsphere.pkr.hcl │ ├── esxauth.auto.pkrvars.hcl.dist │ ├── esxi_defaults.auto.pkrvars.hcl │ ├── files │ │ └── ks.cfg │ ├── scripts │ │ ├── cleanup.sh │ │ ├── os_detect.sh │ │ └── setup.sh │ ├── sources.auto.pkrvars.hcl │ ├── varmap.pkr.hcl │ └── vsphere_iso.pkr.hcl └── packer-centos-8.3 │ ├── .gitignore │ ├── build_defaults.auto.pkrvars.hcl.dist │ ├── build_vsphere.pkr.hcl │ ├── esxauth.auto.pkrvars.hcl.dist │ ├── esxi_defaults.auto.pkrvars.hcl │ ├── files │ └── ks.cfg │ ├── scripts │ ├── cleanup.sh │ ├── os_detect.sh │ └── setup.sh │ ├── sources.auto.pkrvars.hcl │ ├── varmap.pkr.hcl │ └── vsphere_iso.pkr.hcl ├── Plugins └── custom_report_type │ ├── .gradle │ ├── 7.4.2 │ │ ├── checksums │ │ │ ├── checksums.lock │ │ │ └── sha1-checksums.bin │ │ ├── dependencies-accessors │ │ │ ├── dependencies-accessors.lock │ │ │ └── gc.properties │ │ ├── fileChanges │ │ │ └── last-build.bin │ │ ├── fileHashes │ │ │ └── fileHashes.lock │ │ └── gc.properties │ ├── 8.1.1 │ │ ├── checksums │ │ │ ├── checksums.lock │ │ │ ├── md5-checksums.bin │ │ │ └── sha1-checksums.bin │ │ ├── dependencies-accessors │ │ │ ├── dependencies-accessors.lock │ │ │ └── gc.properties │ │ ├── fileChanges │ │ │ └── last-build.bin │ │ ├── fileHashes │ │ │ └── fileHashes.lock │ │ └── gc.properties │ ├── buildOutputCleanup │ │ ├── buildOutputCleanup.lock │ │ └── cache.properties │ ├── checksums │ │ └── checksums.lock │ └── vcs-1 │ │ └── gc.properties │ ├── README.md │ ├── _images │ ├── morpheus_plugin_upload.png │ ├── morpheus_report_results.png │ ├── morpheus_reports.png │ └── morpheus_sample_report_results.png │ ├── build.gradle │ ├── build │ ├── assets │ │ └── manifest.properties │ ├── classes │ │ └── groovy │ │ │ └── main │ │ │ └── com │ │ │ └── morpheusdata │ │ │ └── reports │ │ │ ├── CustomReportProvider$_process_closure1.class │ │ │ ├── CustomReportProvider$_process_closure2.class │ │ │ ├── CustomReportProvider$_process_closure3.class │ │ │ ├── CustomReportProvider$_process_closure4.class │ │ │ ├── CustomReportProvider.class │ │ │ └── ReportsPlugin.class │ ├── libs │ │ └── morpheus-example-reports-plugin-1.2.2.jar │ ├── resources │ │ └── main │ │ │ └── renderer │ │ │ └── hbs │ │ │ └── patchingReport.hbs │ └── tmp │ │ └── shadowJar │ │ └── MANIFEST.MF │ ├── example.md │ ├── gradle.properties │ └── src │ └── main │ ├── groovy │ └── com │ │ └── morpheusdata │ │ └── reports │ │ ├── CustomReportProvider.groovy │ │ ├── ReportsPlugin.groovy │ │ └── mophoplugin.code-workspace │ └── resources │ └── renderer │ └── hbs │ └── patchingReport.hbs ├── PowerShell ├── Azure │ └── generateSPN.ps1 ├── Configuration │ ├── Configuration Phase - Generate Name from IP Hash.ps1 │ ├── generate-new-instance-name.ps1 │ ├── set-group-access.ps1 │ └── set-status-morpheus-objects.ps1 ├── Functions │ ├── createInputs.ps1 │ └── createOptionList.ps1 ├── Import Brownfield Reserved IPs.ps1 ├── Instance Types │ └── SQL │ │ └── SQL.ps1 ├── Morpheus Approvals Check.ps1 ├── Morpheus Prompted Authentication.ps1 ├── Morpheus Unattended Authentication.ps1 ├── Morpheus │ ├── Migration.ps1 │ └── addDiscovered.ps1 ├── Random Password Generator.ps1 ├── Service Plans │ └── DisablePlans.ps1 ├── VMware │ ├── Connect to vCenter.ps1 │ └── Set Anti-Affinity.ps1 ├── Windows │ ├── AD - Delete AD Object.ps1 │ ├── AD - Install Domain Controller.ps1 │ └── Online and Expand Disks.ps1 └── disableFolders.ps1 ├── Python ├── CleanAgentRepos │ ├── README.md │ ├── clean_repos.py │ └── requirements.txt ├── DumpEnvironment │ ├── README.md │ └── py-dump-env.py ├── Jobs │ └── updateJob.py ├── Nested Account Discovery │ ├── README.md │ └── accDisc.py ├── Policies │ └── notification.py ├── Provisioning │ └── instances │ │ ├── README.md │ │ ├── disk_relabel.groovy │ │ ├── instanceProvisioning.py │ │ ├── updateWiki.py │ │ └── verifyInstanceExists.py ├── RunTasksByTag │ ├── README.md │ └── py-run-tasks-by-tag.py ├── Service Plans │ ├── assignPlanstoDiscoveredVM.py │ └── vmConverttoManaged.py ├── ServiceNow │ ├── cmdbCIUpdates.py │ ├── createTaskNow.py │ ├── create_cmdb_ci_record.py │ └── updateTaskNow.py ├── approvals │ └── approvalList.py ├── aws │ └── s3.py ├── configurationPhase │ ├── configPhaseARMspecTemplate.py │ ├── configPhase_adddisk_linux.py │ ├── configPhase_adddisk_windows.py │ ├── updateHostname.py │ └── updateOptions.py ├── datastore │ ├── README.md │ └── datastorelist.py ├── google │ └── removeBuckets.py ├── networks │ └── setNetworkSettings.py ├── servers │ ├── deleteOrphanedVMs.py │ └── discoverVMByTags.py ├── tenant │ └── tenantOnboarding.py └── virtualImages │ └── updateVirtualImage.py ├── README.md ├── Shell ├── Instance Types │ ├── HAProxy │ │ └── HAProxyInstall.sh │ ├── L4D2 │ │ ├── Install.sh │ │ ├── L4D2 - Full Install.PNG │ │ ├── L4D2 - Start L4D2.PNG │ │ ├── L4D2 File Templates.PNG │ │ ├── L4D2 Node Type.PNG │ │ ├── L4D2 Workflow.PNG │ │ ├── admins_simple.ini │ │ ├── banned_ip.cfg │ │ ├── banned_user.cfg │ │ ├── metamod.vdf │ │ └── server.cfg │ ├── Mincraft Server │ │ ├── Morpheus Minecraft Configurations.postman_collection.json │ │ ├── README.md │ │ ├── automation │ │ │ ├── install_minecraft.sh │ │ │ └── install_minecraft_server_task.md │ │ ├── file templates │ │ │ ├── minecraft_eula.md │ │ │ ├── minecraft_opped_users.md │ │ │ ├── minecraft_server_properties.md │ │ │ ├── minecraft_service.md │ │ │ └── minecraft_start_script.md │ │ ├── instance configuration │ │ │ └── instance-type.md │ │ ├── option lists │ │ │ ├── minecraft-game-modes.md │ │ │ ├── minecraft-ports.md │ │ │ └── minecraft-versions.md │ │ └── option types │ │ │ ├── minecraft-game-mode.md │ │ │ ├── minecraft-port.md │ │ │ └── minecraft-version.md │ └── WordPress │ │ ├── .htaccess │ │ ├── ConfigureDB.sh │ │ ├── InstallWordPress.sh │ │ ├── LetsEncrypt.sh │ │ ├── ssl.conf │ │ └── wp-config.php ├── JoinDomain │ ├── README.md │ └── join_domain.sh └── preinstallcheck.sh ├── Terraform ├── AWS │ ├── EC2-agent │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── provider.tf │ │ └── variables.tf │ ├── VPC │ │ ├── default_vars.tf │ │ ├── locals.tf │ │ ├── provider.tf │ │ ├── provider_no_assume.tf │ │ ├── subnet_by_count.tf │ │ └── vpc.tf │ ├── morpheusAIO-AMZ-EC2 │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── provider.tf │ │ ├── scripts │ │ │ └── morpheus.sh │ │ └── variables.tf │ ├── simpleEC2-Ubuntu │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── provider.tf │ │ └── variables.tf │ ├── simpleRoute53 │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── provider.tf │ │ └── variables.tf │ ├── simpleS3-count │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── provider.tf │ │ ├── test.tfvars │ │ └── variables.tf │ ├── simpleS3-local-module │ │ ├── main.tf │ │ ├── modules │ │ │ ├── acl │ │ │ │ ├── main.tf │ │ │ │ ├── outputs.tf │ │ │ │ ├── provider.tf │ │ │ │ └── variables.tf │ │ │ └── simpleS3 │ │ │ │ ├── main.tf │ │ │ │ ├── outputs.tf │ │ │ │ ├── provider.tf │ │ │ │ └── variables.tf │ │ ├── outputs.tf │ │ ├── provider.tf │ │ └── variables.tf │ ├── simpleS3-module │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── provider.tf │ │ └── variables.tf │ ├── simpleS3-multiBuckets │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── provider.tf │ │ └── variables.tf │ ├── simpleS3-remoterepo │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── provider.tf │ │ └── variables.tf │ ├── simpleS3 │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── provider.tf │ │ └── variables.tf │ └── simpleWebsite │ │ ├── files │ │ ├── index.html │ │ └── morpheus.png │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── provider.tf │ │ └── variables.tf ├── Azure │ ├── ASE │ │ ├── main.tf │ │ └── variables.tf │ ├── resourceGroup-remoterepo │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── provider.tf │ │ └── variables.tf │ ├── resourceGroup │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── provider.tf │ │ └── variables.tf │ ├── simpleBlob │ │ ├── files │ │ │ └── morpheus.png │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── provider.tf │ │ └── variables.tf │ ├── simpleWebsite │ │ ├── files │ │ │ ├── index.html │ │ │ └── morpheus.png │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── provider.tf │ │ └── variables.tf │ └── storageAccount │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── provider.tf │ │ └── variables.tf ├── GCP │ ├── VM-agent │ │ ├── main.tf │ │ ├── provider.tf │ │ └── variables.tf │ ├── simpleBucket │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── provider.tf │ │ └── variables.tf │ ├── simpleVM │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── provider.tf │ │ └── variables.tf │ └── simpleWebsite │ │ ├── files │ │ ├── index.html │ │ └── morpheus.png │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── provider.tf │ │ └── variables.tf ├── NutanixPrism │ ├── main.tf │ ├── provider.tf │ ├── unattend.xml │ └── variables.tf ├── OCI │ └── simpleBucket │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── provider.tf │ │ └── variables.tf ├── VMware │ ├── createFolder │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── provider.tf │ │ └── variables.tf │ └── createFolderMulti │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── provider.tf │ │ └── variables.tf └── modules │ ├── AWS │ └── simpleS3 │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── provider.tf │ │ └── variables.tf │ ├── Azure │ ├── resourceGroup │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── provider.tf │ │ └── variables.tf │ ├── storageAccount │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── provider.tf │ │ └── variables.tf │ └── storageContainer │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── provider.tf │ │ └── variables.tf │ ├── GCP │ └── storageBucket │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── provider.tf │ │ └── variables.tf │ ├── OCI │ └── simpleBucket │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── provider.tf │ │ └── variables.tf │ └── VMware │ └── createFolder │ ├── main.tf │ ├── outputs.tf │ ├── provider.tf │ └── variables.tf └── src └── common └── images ├── AddAnsibleIntegration.png ├── AnsibleTask.png ├── Patching.png ├── Patching_new.png ├── executionSchedule.png ├── gitIntegration.png ├── jobUpdateWorkflow.png ├── pluginUpload.png └── pythonTask.png /Ansible/DumpEnvironment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Ansible/DumpEnvironment/README.md -------------------------------------------------------------------------------- /Ansible/DumpEnvironment/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Ansible/DumpEnvironment/playbook.yml -------------------------------------------------------------------------------- /Ansible/Linux/GalaxyExample/PatchingLinuxServers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Ansible/Linux/GalaxyExample/PatchingLinuxServers.md -------------------------------------------------------------------------------- /Ansible/Linux/GalaxyExample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Ansible/Linux/GalaxyExample/README.md -------------------------------------------------------------------------------- /Ansible/Linux/GalaxyExample/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Ansible/Linux/GalaxyExample/playbook.yml -------------------------------------------------------------------------------- /Ansible/Linux/GalaxyExample/requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Ansible/Linux/GalaxyExample/requirements.yml -------------------------------------------------------------------------------- /Ansible/Linux/GalaxyExample2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Ansible/Linux/GalaxyExample2/README.md -------------------------------------------------------------------------------- /Ansible/Linux/GalaxyExample2/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Ansible/Linux/GalaxyExample2/playbook.yml -------------------------------------------------------------------------------- /Ansible/Linux/GalaxyExample2/requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Ansible/Linux/GalaxyExample2/requirements.yml -------------------------------------------------------------------------------- /Ansible/Linux/linuxDomainJoin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Ansible/Linux/linuxDomainJoin.yml -------------------------------------------------------------------------------- /Cloudformation/CFSpecTemplate/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Cloudformation/CFSpecTemplate/2.png -------------------------------------------------------------------------------- /Cloudformation/CFSpecTemplate/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Cloudformation/CFSpecTemplate/3.png -------------------------------------------------------------------------------- /Cloudformation/CFSpecTemplate/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Cloudformation/CFSpecTemplate/4.png -------------------------------------------------------------------------------- /Cloudformation/CFSpecTemplate/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Cloudformation/CFSpecTemplate/5.png -------------------------------------------------------------------------------- /Cloudformation/CFSpecTemplate/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Cloudformation/CFSpecTemplate/6.png -------------------------------------------------------------------------------- /Cloudformation/CFSpecTemplate/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Cloudformation/CFSpecTemplate/7.png -------------------------------------------------------------------------------- /Cloudformation/CFSpecTemplate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Cloudformation/CFSpecTemplate/README.md -------------------------------------------------------------------------------- /Cloudformation/CFSpecTemplate/S3 Variable Map Example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Cloudformation/CFSpecTemplate/S3 Variable Map Example.json -------------------------------------------------------------------------------- /Groovy/AD - Create Morpheus Domain.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Groovy/AD - Create Morpheus Domain.groovy -------------------------------------------------------------------------------- /Groovy/ExtendInstanceShutdownPolicy.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Groovy/ExtendInstanceShutdownPolicy.groovy -------------------------------------------------------------------------------- /Groovy/updateAnsibleTowerInvPerm.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Groovy/updateAnsibleTowerInvPerm.groovy -------------------------------------------------------------------------------- /Groovy/updateDomainTenantPermissions.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Groovy/updateDomainTenantPermissions.groovy -------------------------------------------------------------------------------- /JavaScript/Option Lists/aws_ami_by_region_translation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/JavaScript/Option Lists/aws_ami_by_region_translation.js -------------------------------------------------------------------------------- /JavaScript/Option Lists/aws_regions_translation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/JavaScript/Option Lists/aws_regions_translation.js -------------------------------------------------------------------------------- /JavaScript/Option Lists/current_user_top_level_ldap_attribute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/JavaScript/Option Lists/current_user_top_level_ldap_attribute.js -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Packer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Packer/README.md -------------------------------------------------------------------------------- /Packer/packer-centos-7.9/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Packer/packer-centos-7.9/.gitignore -------------------------------------------------------------------------------- /Packer/packer-centos-7.9/build_defaults.auto.pkrvars.hcl.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Packer/packer-centos-7.9/build_defaults.auto.pkrvars.hcl.dist -------------------------------------------------------------------------------- /Packer/packer-centos-7.9/build_vsphere.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Packer/packer-centos-7.9/build_vsphere.pkr.hcl -------------------------------------------------------------------------------- /Packer/packer-centos-7.9/esxauth.auto.pkrvars.hcl.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Packer/packer-centos-7.9/esxauth.auto.pkrvars.hcl.dist -------------------------------------------------------------------------------- /Packer/packer-centos-7.9/esxi_defaults.auto.pkrvars.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Packer/packer-centos-7.9/esxi_defaults.auto.pkrvars.hcl -------------------------------------------------------------------------------- /Packer/packer-centos-7.9/files/ks.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Packer/packer-centos-7.9/files/ks.cfg -------------------------------------------------------------------------------- /Packer/packer-centos-7.9/scripts/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Packer/packer-centos-7.9/scripts/cleanup.sh -------------------------------------------------------------------------------- /Packer/packer-centos-7.9/scripts/os_detect.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Packer/packer-centos-7.9/scripts/os_detect.sh -------------------------------------------------------------------------------- /Packer/packer-centos-7.9/scripts/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Packer/packer-centos-7.9/scripts/setup.sh -------------------------------------------------------------------------------- /Packer/packer-centos-7.9/sources.auto.pkrvars.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Packer/packer-centos-7.9/sources.auto.pkrvars.hcl -------------------------------------------------------------------------------- /Packer/packer-centos-7.9/varmap.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Packer/packer-centos-7.9/varmap.pkr.hcl -------------------------------------------------------------------------------- /Packer/packer-centos-7.9/vsphere_iso.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Packer/packer-centos-7.9/vsphere_iso.pkr.hcl -------------------------------------------------------------------------------- /Packer/packer-centos-8.3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Packer/packer-centos-8.3/.gitignore -------------------------------------------------------------------------------- /Packer/packer-centos-8.3/build_defaults.auto.pkrvars.hcl.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Packer/packer-centos-8.3/build_defaults.auto.pkrvars.hcl.dist -------------------------------------------------------------------------------- /Packer/packer-centos-8.3/build_vsphere.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Packer/packer-centos-8.3/build_vsphere.pkr.hcl -------------------------------------------------------------------------------- /Packer/packer-centos-8.3/esxauth.auto.pkrvars.hcl.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Packer/packer-centos-8.3/esxauth.auto.pkrvars.hcl.dist -------------------------------------------------------------------------------- /Packer/packer-centos-8.3/esxi_defaults.auto.pkrvars.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Packer/packer-centos-8.3/esxi_defaults.auto.pkrvars.hcl -------------------------------------------------------------------------------- /Packer/packer-centos-8.3/files/ks.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Packer/packer-centos-8.3/files/ks.cfg -------------------------------------------------------------------------------- /Packer/packer-centos-8.3/scripts/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Packer/packer-centos-8.3/scripts/cleanup.sh -------------------------------------------------------------------------------- /Packer/packer-centos-8.3/scripts/os_detect.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Packer/packer-centos-8.3/scripts/os_detect.sh -------------------------------------------------------------------------------- /Packer/packer-centos-8.3/scripts/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Packer/packer-centos-8.3/scripts/setup.sh -------------------------------------------------------------------------------- /Packer/packer-centos-8.3/sources.auto.pkrvars.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Packer/packer-centos-8.3/sources.auto.pkrvars.hcl -------------------------------------------------------------------------------- /Packer/packer-centos-8.3/varmap.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Packer/packer-centos-8.3/varmap.pkr.hcl -------------------------------------------------------------------------------- /Packer/packer-centos-8.3/vsphere_iso.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Packer/packer-centos-8.3/vsphere_iso.pkr.hcl -------------------------------------------------------------------------------- /Plugins/custom_report_type/.gradle/7.4.2/checksums/checksums.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Plugins/custom_report_type/.gradle/7.4.2/checksums/checksums.lock -------------------------------------------------------------------------------- /Plugins/custom_report_type/.gradle/7.4.2/checksums/sha1-checksums.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Plugins/custom_report_type/.gradle/7.4.2/checksums/sha1-checksums.bin -------------------------------------------------------------------------------- /Plugins/custom_report_type/.gradle/7.4.2/dependencies-accessors/dependencies-accessors.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Plugins/custom_report_type/.gradle/7.4.2/dependencies-accessors/dependencies-accessors.lock -------------------------------------------------------------------------------- /Plugins/custom_report_type/.gradle/7.4.2/dependencies-accessors/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plugins/custom_report_type/.gradle/7.4.2/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plugins/custom_report_type/.gradle/7.4.2/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Plugins/custom_report_type/.gradle/7.4.2/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /Plugins/custom_report_type/.gradle/7.4.2/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plugins/custom_report_type/.gradle/8.1.1/checksums/checksums.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Plugins/custom_report_type/.gradle/8.1.1/checksums/checksums.lock -------------------------------------------------------------------------------- /Plugins/custom_report_type/.gradle/8.1.1/checksums/md5-checksums.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Plugins/custom_report_type/.gradle/8.1.1/checksums/md5-checksums.bin -------------------------------------------------------------------------------- /Plugins/custom_report_type/.gradle/8.1.1/checksums/sha1-checksums.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Plugins/custom_report_type/.gradle/8.1.1/checksums/sha1-checksums.bin -------------------------------------------------------------------------------- /Plugins/custom_report_type/.gradle/8.1.1/dependencies-accessors/dependencies-accessors.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Plugins/custom_report_type/.gradle/8.1.1/dependencies-accessors/dependencies-accessors.lock -------------------------------------------------------------------------------- /Plugins/custom_report_type/.gradle/8.1.1/dependencies-accessors/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plugins/custom_report_type/.gradle/8.1.1/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plugins/custom_report_type/.gradle/8.1.1/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Plugins/custom_report_type/.gradle/8.1.1/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /Plugins/custom_report_type/.gradle/8.1.1/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plugins/custom_report_type/.gradle/buildOutputCleanup/buildOutputCleanup.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Plugins/custom_report_type/.gradle/buildOutputCleanup/buildOutputCleanup.lock -------------------------------------------------------------------------------- /Plugins/custom_report_type/.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Mon Apr 22 09:21:00 EDT 2024 2 | gradle.version=8.1.1 3 | -------------------------------------------------------------------------------- /Plugins/custom_report_type/.gradle/checksums/checksums.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Plugins/custom_report_type/.gradle/checksums/checksums.lock -------------------------------------------------------------------------------- /Plugins/custom_report_type/.gradle/vcs-1/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plugins/custom_report_type/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Plugins/custom_report_type/README.md -------------------------------------------------------------------------------- /Plugins/custom_report_type/_images/morpheus_plugin_upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Plugins/custom_report_type/_images/morpheus_plugin_upload.png -------------------------------------------------------------------------------- /Plugins/custom_report_type/_images/morpheus_report_results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Plugins/custom_report_type/_images/morpheus_report_results.png -------------------------------------------------------------------------------- /Plugins/custom_report_type/_images/morpheus_reports.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Plugins/custom_report_type/_images/morpheus_reports.png -------------------------------------------------------------------------------- /Plugins/custom_report_type/_images/morpheus_sample_report_results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Plugins/custom_report_type/_images/morpheus_sample_report_results.png -------------------------------------------------------------------------------- /Plugins/custom_report_type/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Plugins/custom_report_type/build.gradle -------------------------------------------------------------------------------- /Plugins/custom_report_type/build/assets/manifest.properties: -------------------------------------------------------------------------------- 1 | # 2 | #Fri Sep 10 15:59:25 BST 2021 3 | -------------------------------------------------------------------------------- /Plugins/custom_report_type/build/classes/groovy/main/com/morpheusdata/reports/CustomReportProvider$_process_closure1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Plugins/custom_report_type/build/classes/groovy/main/com/morpheusdata/reports/CustomReportProvider$_process_closure1.class -------------------------------------------------------------------------------- /Plugins/custom_report_type/build/classes/groovy/main/com/morpheusdata/reports/CustomReportProvider$_process_closure2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Plugins/custom_report_type/build/classes/groovy/main/com/morpheusdata/reports/CustomReportProvider$_process_closure2.class -------------------------------------------------------------------------------- /Plugins/custom_report_type/build/classes/groovy/main/com/morpheusdata/reports/CustomReportProvider$_process_closure3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Plugins/custom_report_type/build/classes/groovy/main/com/morpheusdata/reports/CustomReportProvider$_process_closure3.class -------------------------------------------------------------------------------- /Plugins/custom_report_type/build/classes/groovy/main/com/morpheusdata/reports/CustomReportProvider$_process_closure4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Plugins/custom_report_type/build/classes/groovy/main/com/morpheusdata/reports/CustomReportProvider$_process_closure4.class -------------------------------------------------------------------------------- /Plugins/custom_report_type/build/classes/groovy/main/com/morpheusdata/reports/CustomReportProvider.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Plugins/custom_report_type/build/classes/groovy/main/com/morpheusdata/reports/CustomReportProvider.class -------------------------------------------------------------------------------- /Plugins/custom_report_type/build/classes/groovy/main/com/morpheusdata/reports/ReportsPlugin.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Plugins/custom_report_type/build/classes/groovy/main/com/morpheusdata/reports/ReportsPlugin.class -------------------------------------------------------------------------------- /Plugins/custom_report_type/build/libs/morpheus-example-reports-plugin-1.2.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Plugins/custom_report_type/build/libs/morpheus-example-reports-plugin-1.2.2.jar -------------------------------------------------------------------------------- /Plugins/custom_report_type/build/resources/main/renderer/hbs/patchingReport.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Plugins/custom_report_type/build/resources/main/renderer/hbs/patchingReport.hbs -------------------------------------------------------------------------------- /Plugins/custom_report_type/build/tmp/shadowJar/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Plugins/custom_report_type/build/tmp/shadowJar/MANIFEST.MF -------------------------------------------------------------------------------- /Plugins/custom_report_type/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Plugins/custom_report_type/example.md -------------------------------------------------------------------------------- /Plugins/custom_report_type/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Plugins/custom_report_type/gradle.properties -------------------------------------------------------------------------------- /Plugins/custom_report_type/src/main/groovy/com/morpheusdata/reports/CustomReportProvider.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Plugins/custom_report_type/src/main/groovy/com/morpheusdata/reports/CustomReportProvider.groovy -------------------------------------------------------------------------------- /Plugins/custom_report_type/src/main/groovy/com/morpheusdata/reports/ReportsPlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Plugins/custom_report_type/src/main/groovy/com/morpheusdata/reports/ReportsPlugin.groovy -------------------------------------------------------------------------------- /Plugins/custom_report_type/src/main/groovy/com/morpheusdata/reports/mophoplugin.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Plugins/custom_report_type/src/main/groovy/com/morpheusdata/reports/mophoplugin.code-workspace -------------------------------------------------------------------------------- /Plugins/custom_report_type/src/main/resources/renderer/hbs/patchingReport.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Plugins/custom_report_type/src/main/resources/renderer/hbs/patchingReport.hbs -------------------------------------------------------------------------------- /PowerShell/Azure/generateSPN.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/PowerShell/Azure/generateSPN.ps1 -------------------------------------------------------------------------------- /PowerShell/Configuration/Configuration Phase - Generate Name from IP Hash.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/PowerShell/Configuration/Configuration Phase - Generate Name from IP Hash.ps1 -------------------------------------------------------------------------------- /PowerShell/Configuration/generate-new-instance-name.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/PowerShell/Configuration/generate-new-instance-name.ps1 -------------------------------------------------------------------------------- /PowerShell/Configuration/set-group-access.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/PowerShell/Configuration/set-group-access.ps1 -------------------------------------------------------------------------------- /PowerShell/Configuration/set-status-morpheus-objects.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/PowerShell/Configuration/set-status-morpheus-objects.ps1 -------------------------------------------------------------------------------- /PowerShell/Functions/createInputs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/PowerShell/Functions/createInputs.ps1 -------------------------------------------------------------------------------- /PowerShell/Functions/createOptionList.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/PowerShell/Functions/createOptionList.ps1 -------------------------------------------------------------------------------- /PowerShell/Import Brownfield Reserved IPs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/PowerShell/Import Brownfield Reserved IPs.ps1 -------------------------------------------------------------------------------- /PowerShell/Instance Types/SQL/SQL.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/PowerShell/Instance Types/SQL/SQL.ps1 -------------------------------------------------------------------------------- /PowerShell/Morpheus Approvals Check.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/PowerShell/Morpheus Approvals Check.ps1 -------------------------------------------------------------------------------- /PowerShell/Morpheus Prompted Authentication.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/PowerShell/Morpheus Prompted Authentication.ps1 -------------------------------------------------------------------------------- /PowerShell/Morpheus Unattended Authentication.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/PowerShell/Morpheus Unattended Authentication.ps1 -------------------------------------------------------------------------------- /PowerShell/Morpheus/Migration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/PowerShell/Morpheus/Migration.ps1 -------------------------------------------------------------------------------- /PowerShell/Morpheus/addDiscovered.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/PowerShell/Morpheus/addDiscovered.ps1 -------------------------------------------------------------------------------- /PowerShell/Random Password Generator.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/PowerShell/Random Password Generator.ps1 -------------------------------------------------------------------------------- /PowerShell/Service Plans/DisablePlans.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/PowerShell/Service Plans/DisablePlans.ps1 -------------------------------------------------------------------------------- /PowerShell/VMware/Connect to vCenter.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/PowerShell/VMware/Connect to vCenter.ps1 -------------------------------------------------------------------------------- /PowerShell/VMware/Set Anti-Affinity.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/PowerShell/VMware/Set Anti-Affinity.ps1 -------------------------------------------------------------------------------- /PowerShell/Windows/AD - Delete AD Object.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/PowerShell/Windows/AD - Delete AD Object.ps1 -------------------------------------------------------------------------------- /PowerShell/Windows/AD - Install Domain Controller.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/PowerShell/Windows/AD - Install Domain Controller.ps1 -------------------------------------------------------------------------------- /PowerShell/Windows/Online and Expand Disks.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/PowerShell/Windows/Online and Expand Disks.ps1 -------------------------------------------------------------------------------- /PowerShell/disableFolders.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/PowerShell/disableFolders.ps1 -------------------------------------------------------------------------------- /Python/CleanAgentRepos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Python/CleanAgentRepos/README.md -------------------------------------------------------------------------------- /Python/CleanAgentRepos/clean_repos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Python/CleanAgentRepos/clean_repos.py -------------------------------------------------------------------------------- /Python/CleanAgentRepos/requirements.txt: -------------------------------------------------------------------------------- 1 | packaging -------------------------------------------------------------------------------- /Python/DumpEnvironment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Python/DumpEnvironment/README.md -------------------------------------------------------------------------------- /Python/DumpEnvironment/py-dump-env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Python/DumpEnvironment/py-dump-env.py -------------------------------------------------------------------------------- /Python/Jobs/updateJob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Python/Jobs/updateJob.py -------------------------------------------------------------------------------- /Python/Nested Account Discovery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Python/Nested Account Discovery/README.md -------------------------------------------------------------------------------- /Python/Nested Account Discovery/accDisc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Python/Nested Account Discovery/accDisc.py -------------------------------------------------------------------------------- /Python/Policies/notification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Python/Policies/notification.py -------------------------------------------------------------------------------- /Python/Provisioning/instances/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Python/Provisioning/instances/README.md -------------------------------------------------------------------------------- /Python/Provisioning/instances/disk_relabel.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Python/Provisioning/instances/disk_relabel.groovy -------------------------------------------------------------------------------- /Python/Provisioning/instances/instanceProvisioning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Python/Provisioning/instances/instanceProvisioning.py -------------------------------------------------------------------------------- /Python/Provisioning/instances/updateWiki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Python/Provisioning/instances/updateWiki.py -------------------------------------------------------------------------------- /Python/Provisioning/instances/verifyInstanceExists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Python/Provisioning/instances/verifyInstanceExists.py -------------------------------------------------------------------------------- /Python/RunTasksByTag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Python/RunTasksByTag/README.md -------------------------------------------------------------------------------- /Python/RunTasksByTag/py-run-tasks-by-tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Python/RunTasksByTag/py-run-tasks-by-tag.py -------------------------------------------------------------------------------- /Python/Service Plans/assignPlanstoDiscoveredVM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Python/Service Plans/assignPlanstoDiscoveredVM.py -------------------------------------------------------------------------------- /Python/Service Plans/vmConverttoManaged.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Python/Service Plans/vmConverttoManaged.py -------------------------------------------------------------------------------- /Python/ServiceNow/cmdbCIUpdates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Python/ServiceNow/cmdbCIUpdates.py -------------------------------------------------------------------------------- /Python/ServiceNow/createTaskNow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Python/ServiceNow/createTaskNow.py -------------------------------------------------------------------------------- /Python/ServiceNow/create_cmdb_ci_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Python/ServiceNow/create_cmdb_ci_record.py -------------------------------------------------------------------------------- /Python/ServiceNow/updateTaskNow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Python/ServiceNow/updateTaskNow.py -------------------------------------------------------------------------------- /Python/approvals/approvalList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Python/approvals/approvalList.py -------------------------------------------------------------------------------- /Python/aws/s3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Python/aws/s3.py -------------------------------------------------------------------------------- /Python/configurationPhase/configPhaseARMspecTemplate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Python/configurationPhase/configPhaseARMspecTemplate.py -------------------------------------------------------------------------------- /Python/configurationPhase/configPhase_adddisk_linux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Python/configurationPhase/configPhase_adddisk_linux.py -------------------------------------------------------------------------------- /Python/configurationPhase/configPhase_adddisk_windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Python/configurationPhase/configPhase_adddisk_windows.py -------------------------------------------------------------------------------- /Python/configurationPhase/updateHostname.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Python/configurationPhase/updateHostname.py -------------------------------------------------------------------------------- /Python/configurationPhase/updateOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Python/configurationPhase/updateOptions.py -------------------------------------------------------------------------------- /Python/datastore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Python/datastore/README.md -------------------------------------------------------------------------------- /Python/datastore/datastorelist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Python/datastore/datastorelist.py -------------------------------------------------------------------------------- /Python/google/removeBuckets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Python/google/removeBuckets.py -------------------------------------------------------------------------------- /Python/networks/setNetworkSettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Python/networks/setNetworkSettings.py -------------------------------------------------------------------------------- /Python/servers/deleteOrphanedVMs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Python/servers/deleteOrphanedVMs.py -------------------------------------------------------------------------------- /Python/servers/discoverVMByTags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Python/servers/discoverVMByTags.py -------------------------------------------------------------------------------- /Python/tenant/tenantOnboarding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Python/tenant/tenantOnboarding.py -------------------------------------------------------------------------------- /Python/virtualImages/updateVirtualImage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Python/virtualImages/updateVirtualImage.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/README.md -------------------------------------------------------------------------------- /Shell/Instance Types/HAProxy/HAProxyInstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Shell/Instance Types/HAProxy/HAProxyInstall.sh -------------------------------------------------------------------------------- /Shell/Instance Types/L4D2/Install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Shell/Instance Types/L4D2/Install.sh -------------------------------------------------------------------------------- /Shell/Instance Types/L4D2/L4D2 - Full Install.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Shell/Instance Types/L4D2/L4D2 - Full Install.PNG -------------------------------------------------------------------------------- /Shell/Instance Types/L4D2/L4D2 - Start L4D2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Shell/Instance Types/L4D2/L4D2 - Start L4D2.PNG -------------------------------------------------------------------------------- /Shell/Instance Types/L4D2/L4D2 File Templates.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Shell/Instance Types/L4D2/L4D2 File Templates.PNG -------------------------------------------------------------------------------- /Shell/Instance Types/L4D2/L4D2 Node Type.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Shell/Instance Types/L4D2/L4D2 Node Type.PNG -------------------------------------------------------------------------------- /Shell/Instance Types/L4D2/L4D2 Workflow.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Shell/Instance Types/L4D2/L4D2 Workflow.PNG -------------------------------------------------------------------------------- /Shell/Instance Types/L4D2/admins_simple.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Shell/Instance Types/L4D2/admins_simple.ini -------------------------------------------------------------------------------- /Shell/Instance Types/L4D2/banned_ip.cfg: -------------------------------------------------------------------------------- 1 | // Banned IPs -------------------------------------------------------------------------------- /Shell/Instance Types/L4D2/banned_user.cfg: -------------------------------------------------------------------------------- 1 | // Banned Users -------------------------------------------------------------------------------- /Shell/Instance Types/L4D2/metamod.vdf: -------------------------------------------------------------------------------- 1 | "Plugin" 2 | { 3 | "file" "../left4dead2/addons/metamod/bin/server" 4 | } -------------------------------------------------------------------------------- /Shell/Instance Types/L4D2/server.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Shell/Instance Types/L4D2/server.cfg -------------------------------------------------------------------------------- /Shell/Instance Types/Mincraft Server/Morpheus Minecraft Configurations.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Shell/Instance Types/Mincraft Server/Morpheus Minecraft Configurations.postman_collection.json -------------------------------------------------------------------------------- /Shell/Instance Types/Mincraft Server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Shell/Instance Types/Mincraft Server/README.md -------------------------------------------------------------------------------- /Shell/Instance Types/Mincraft Server/automation/install_minecraft.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Shell/Instance Types/Mincraft Server/automation/install_minecraft.sh -------------------------------------------------------------------------------- /Shell/Instance Types/Mincraft Server/automation/install_minecraft_server_task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Shell/Instance Types/Mincraft Server/automation/install_minecraft_server_task.md -------------------------------------------------------------------------------- /Shell/Instance Types/Mincraft Server/file templates/minecraft_eula.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Shell/Instance Types/Mincraft Server/file templates/minecraft_eula.md -------------------------------------------------------------------------------- /Shell/Instance Types/Mincraft Server/file templates/minecraft_opped_users.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Shell/Instance Types/Mincraft Server/file templates/minecraft_opped_users.md -------------------------------------------------------------------------------- /Shell/Instance Types/Mincraft Server/file templates/minecraft_server_properties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Shell/Instance Types/Mincraft Server/file templates/minecraft_server_properties.md -------------------------------------------------------------------------------- /Shell/Instance Types/Mincraft Server/file templates/minecraft_service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Shell/Instance Types/Mincraft Server/file templates/minecraft_service.md -------------------------------------------------------------------------------- /Shell/Instance Types/Mincraft Server/file templates/minecraft_start_script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Shell/Instance Types/Mincraft Server/file templates/minecraft_start_script.md -------------------------------------------------------------------------------- /Shell/Instance Types/Mincraft Server/instance configuration/instance-type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Shell/Instance Types/Mincraft Server/instance configuration/instance-type.md -------------------------------------------------------------------------------- /Shell/Instance Types/Mincraft Server/option lists/minecraft-game-modes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Shell/Instance Types/Mincraft Server/option lists/minecraft-game-modes.md -------------------------------------------------------------------------------- /Shell/Instance Types/Mincraft Server/option lists/minecraft-ports.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Shell/Instance Types/Mincraft Server/option lists/minecraft-ports.md -------------------------------------------------------------------------------- /Shell/Instance Types/Mincraft Server/option lists/minecraft-versions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Shell/Instance Types/Mincraft Server/option lists/minecraft-versions.md -------------------------------------------------------------------------------- /Shell/Instance Types/Mincraft Server/option types/minecraft-game-mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Shell/Instance Types/Mincraft Server/option types/minecraft-game-mode.md -------------------------------------------------------------------------------- /Shell/Instance Types/Mincraft Server/option types/minecraft-port.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Shell/Instance Types/Mincraft Server/option types/minecraft-port.md -------------------------------------------------------------------------------- /Shell/Instance Types/Mincraft Server/option types/minecraft-version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Shell/Instance Types/Mincraft Server/option types/minecraft-version.md -------------------------------------------------------------------------------- /Shell/Instance Types/WordPress/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Shell/Instance Types/WordPress/.htaccess -------------------------------------------------------------------------------- /Shell/Instance Types/WordPress/ConfigureDB.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Shell/Instance Types/WordPress/ConfigureDB.sh -------------------------------------------------------------------------------- /Shell/Instance Types/WordPress/InstallWordPress.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Shell/Instance Types/WordPress/InstallWordPress.sh -------------------------------------------------------------------------------- /Shell/Instance Types/WordPress/LetsEncrypt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Shell/Instance Types/WordPress/LetsEncrypt.sh -------------------------------------------------------------------------------- /Shell/Instance Types/WordPress/ssl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Shell/Instance Types/WordPress/ssl.conf -------------------------------------------------------------------------------- /Shell/Instance Types/WordPress/wp-config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Shell/Instance Types/WordPress/wp-config.php -------------------------------------------------------------------------------- /Shell/JoinDomain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Shell/JoinDomain/README.md -------------------------------------------------------------------------------- /Shell/JoinDomain/join_domain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Shell/JoinDomain/join_domain.sh -------------------------------------------------------------------------------- /Shell/preinstallcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Shell/preinstallcheck.sh -------------------------------------------------------------------------------- /Terraform/AWS/EC2-agent/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/AWS/EC2-agent/main.tf -------------------------------------------------------------------------------- /Terraform/AWS/EC2-agent/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/AWS/EC2-agent/outputs.tf -------------------------------------------------------------------------------- /Terraform/AWS/EC2-agent/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/AWS/EC2-agent/provider.tf -------------------------------------------------------------------------------- /Terraform/AWS/EC2-agent/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/AWS/EC2-agent/variables.tf -------------------------------------------------------------------------------- /Terraform/AWS/VPC/default_vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/AWS/VPC/default_vars.tf -------------------------------------------------------------------------------- /Terraform/AWS/VPC/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/AWS/VPC/locals.tf -------------------------------------------------------------------------------- /Terraform/AWS/VPC/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/AWS/VPC/provider.tf -------------------------------------------------------------------------------- /Terraform/AWS/VPC/provider_no_assume.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/AWS/VPC/provider_no_assume.tf -------------------------------------------------------------------------------- /Terraform/AWS/VPC/subnet_by_count.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/AWS/VPC/subnet_by_count.tf -------------------------------------------------------------------------------- /Terraform/AWS/VPC/vpc.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/AWS/VPC/vpc.tf -------------------------------------------------------------------------------- /Terraform/AWS/morpheusAIO-AMZ-EC2/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/AWS/morpheusAIO-AMZ-EC2/main.tf -------------------------------------------------------------------------------- /Terraform/AWS/morpheusAIO-AMZ-EC2/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/AWS/morpheusAIO-AMZ-EC2/outputs.tf -------------------------------------------------------------------------------- /Terraform/AWS/morpheusAIO-AMZ-EC2/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/AWS/morpheusAIO-AMZ-EC2/provider.tf -------------------------------------------------------------------------------- /Terraform/AWS/morpheusAIO-AMZ-EC2/scripts/morpheus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/AWS/morpheusAIO-AMZ-EC2/scripts/morpheus.sh -------------------------------------------------------------------------------- /Terraform/AWS/morpheusAIO-AMZ-EC2/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/AWS/morpheusAIO-AMZ-EC2/variables.tf -------------------------------------------------------------------------------- /Terraform/AWS/simpleEC2-Ubuntu/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/AWS/simpleEC2-Ubuntu/main.tf -------------------------------------------------------------------------------- /Terraform/AWS/simpleEC2-Ubuntu/outputs.tf: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Terraform/AWS/simpleEC2-Ubuntu/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/AWS/simpleEC2-Ubuntu/provider.tf -------------------------------------------------------------------------------- /Terraform/AWS/simpleEC2-Ubuntu/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/AWS/simpleEC2-Ubuntu/variables.tf -------------------------------------------------------------------------------- /Terraform/AWS/simpleRoute53/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/AWS/simpleRoute53/main.tf -------------------------------------------------------------------------------- /Terraform/AWS/simpleRoute53/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/AWS/simpleRoute53/outputs.tf -------------------------------------------------------------------------------- /Terraform/AWS/simpleRoute53/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/AWS/simpleRoute53/provider.tf -------------------------------------------------------------------------------- /Terraform/AWS/simpleRoute53/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/AWS/simpleRoute53/variables.tf -------------------------------------------------------------------------------- /Terraform/AWS/simpleS3-count/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/AWS/simpleS3-count/main.tf -------------------------------------------------------------------------------- /Terraform/AWS/simpleS3-count/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/AWS/simpleS3-count/outputs.tf -------------------------------------------------------------------------------- /Terraform/AWS/simpleS3-count/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/AWS/simpleS3-count/provider.tf -------------------------------------------------------------------------------- /Terraform/AWS/simpleS3-count/test.tfvars: -------------------------------------------------------------------------------- 1 | mytest = "itworks" -------------------------------------------------------------------------------- /Terraform/AWS/simpleS3-count/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/AWS/simpleS3-count/variables.tf -------------------------------------------------------------------------------- /Terraform/AWS/simpleS3-local-module/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/AWS/simpleS3-local-module/main.tf -------------------------------------------------------------------------------- /Terraform/AWS/simpleS3-local-module/modules/acl/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/AWS/simpleS3-local-module/modules/acl/main.tf -------------------------------------------------------------------------------- /Terraform/AWS/simpleS3-local-module/modules/acl/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/AWS/simpleS3-local-module/modules/acl/outputs.tf -------------------------------------------------------------------------------- /Terraform/AWS/simpleS3-local-module/modules/acl/provider.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Terraform/AWS/simpleS3-local-module/modules/acl/variables.tf: -------------------------------------------------------------------------------- 1 | variable "acl_value" { 2 | default = "private" 3 | } -------------------------------------------------------------------------------- /Terraform/AWS/simpleS3-local-module/modules/simpleS3/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/AWS/simpleS3-local-module/modules/simpleS3/main.tf -------------------------------------------------------------------------------- /Terraform/AWS/simpleS3-local-module/modules/simpleS3/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/AWS/simpleS3-local-module/modules/simpleS3/outputs.tf -------------------------------------------------------------------------------- /Terraform/AWS/simpleS3-local-module/modules/simpleS3/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/AWS/simpleS3-local-module/modules/simpleS3/provider.tf -------------------------------------------------------------------------------- /Terraform/AWS/simpleS3-local-module/modules/simpleS3/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/AWS/simpleS3-local-module/modules/simpleS3/variables.tf -------------------------------------------------------------------------------- /Terraform/AWS/simpleS3-local-module/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/AWS/simpleS3-local-module/outputs.tf -------------------------------------------------------------------------------- /Terraform/AWS/simpleS3-local-module/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/AWS/simpleS3-local-module/provider.tf -------------------------------------------------------------------------------- /Terraform/AWS/simpleS3-local-module/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/AWS/simpleS3-local-module/variables.tf -------------------------------------------------------------------------------- /Terraform/AWS/simpleS3-module/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/AWS/simpleS3-module/main.tf -------------------------------------------------------------------------------- /Terraform/AWS/simpleS3-module/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/AWS/simpleS3-module/outputs.tf -------------------------------------------------------------------------------- /Terraform/AWS/simpleS3-module/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/AWS/simpleS3-module/provider.tf -------------------------------------------------------------------------------- /Terraform/AWS/simpleS3-module/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/AWS/simpleS3-module/variables.tf -------------------------------------------------------------------------------- /Terraform/AWS/simpleS3-multiBuckets/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/AWS/simpleS3-multiBuckets/main.tf -------------------------------------------------------------------------------- /Terraform/AWS/simpleS3-multiBuckets/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/AWS/simpleS3-multiBuckets/outputs.tf -------------------------------------------------------------------------------- /Terraform/AWS/simpleS3-multiBuckets/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/AWS/simpleS3-multiBuckets/provider.tf -------------------------------------------------------------------------------- /Terraform/AWS/simpleS3-multiBuckets/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/AWS/simpleS3-multiBuckets/variables.tf -------------------------------------------------------------------------------- /Terraform/AWS/simpleS3-remoterepo/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/AWS/simpleS3-remoterepo/main.tf -------------------------------------------------------------------------------- /Terraform/AWS/simpleS3-remoterepo/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/AWS/simpleS3-remoterepo/outputs.tf -------------------------------------------------------------------------------- /Terraform/AWS/simpleS3-remoterepo/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/AWS/simpleS3-remoterepo/provider.tf -------------------------------------------------------------------------------- /Terraform/AWS/simpleS3-remoterepo/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/AWS/simpleS3-remoterepo/variables.tf -------------------------------------------------------------------------------- /Terraform/AWS/simpleS3/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/AWS/simpleS3/main.tf -------------------------------------------------------------------------------- /Terraform/AWS/simpleS3/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/AWS/simpleS3/outputs.tf -------------------------------------------------------------------------------- /Terraform/AWS/simpleS3/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/AWS/simpleS3/provider.tf -------------------------------------------------------------------------------- /Terraform/AWS/simpleS3/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/AWS/simpleS3/variables.tf -------------------------------------------------------------------------------- /Terraform/AWS/simpleWebsite/files/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/AWS/simpleWebsite/files/index.html -------------------------------------------------------------------------------- /Terraform/AWS/simpleWebsite/files/morpheus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/AWS/simpleWebsite/files/morpheus.png -------------------------------------------------------------------------------- /Terraform/AWS/simpleWebsite/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/AWS/simpleWebsite/main.tf -------------------------------------------------------------------------------- /Terraform/AWS/simpleWebsite/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/AWS/simpleWebsite/outputs.tf -------------------------------------------------------------------------------- /Terraform/AWS/simpleWebsite/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/AWS/simpleWebsite/provider.tf -------------------------------------------------------------------------------- /Terraform/AWS/simpleWebsite/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/AWS/simpleWebsite/variables.tf -------------------------------------------------------------------------------- /Terraform/Azure/ASE/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/Azure/ASE/main.tf -------------------------------------------------------------------------------- /Terraform/Azure/ASE/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/Azure/ASE/variables.tf -------------------------------------------------------------------------------- /Terraform/Azure/resourceGroup-remoterepo/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/Azure/resourceGroup-remoterepo/main.tf -------------------------------------------------------------------------------- /Terraform/Azure/resourceGroup-remoterepo/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/Azure/resourceGroup-remoterepo/outputs.tf -------------------------------------------------------------------------------- /Terraform/Azure/resourceGroup-remoterepo/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/Azure/resourceGroup-remoterepo/provider.tf -------------------------------------------------------------------------------- /Terraform/Azure/resourceGroup-remoterepo/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/Azure/resourceGroup-remoterepo/variables.tf -------------------------------------------------------------------------------- /Terraform/Azure/resourceGroup/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/Azure/resourceGroup/main.tf -------------------------------------------------------------------------------- /Terraform/Azure/resourceGroup/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/Azure/resourceGroup/outputs.tf -------------------------------------------------------------------------------- /Terraform/Azure/resourceGroup/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/Azure/resourceGroup/provider.tf -------------------------------------------------------------------------------- /Terraform/Azure/resourceGroup/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/Azure/resourceGroup/variables.tf -------------------------------------------------------------------------------- /Terraform/Azure/simpleBlob/files/morpheus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/Azure/simpleBlob/files/morpheus.png -------------------------------------------------------------------------------- /Terraform/Azure/simpleBlob/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/Azure/simpleBlob/main.tf -------------------------------------------------------------------------------- /Terraform/Azure/simpleBlob/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/Azure/simpleBlob/outputs.tf -------------------------------------------------------------------------------- /Terraform/Azure/simpleBlob/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/Azure/simpleBlob/provider.tf -------------------------------------------------------------------------------- /Terraform/Azure/simpleBlob/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/Azure/simpleBlob/variables.tf -------------------------------------------------------------------------------- /Terraform/Azure/simpleWebsite/files/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/Azure/simpleWebsite/files/index.html -------------------------------------------------------------------------------- /Terraform/Azure/simpleWebsite/files/morpheus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/Azure/simpleWebsite/files/morpheus.png -------------------------------------------------------------------------------- /Terraform/Azure/simpleWebsite/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/Azure/simpleWebsite/main.tf -------------------------------------------------------------------------------- /Terraform/Azure/simpleWebsite/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/Azure/simpleWebsite/outputs.tf -------------------------------------------------------------------------------- /Terraform/Azure/simpleWebsite/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/Azure/simpleWebsite/provider.tf -------------------------------------------------------------------------------- /Terraform/Azure/simpleWebsite/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/Azure/simpleWebsite/variables.tf -------------------------------------------------------------------------------- /Terraform/Azure/storageAccount/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/Azure/storageAccount/main.tf -------------------------------------------------------------------------------- /Terraform/Azure/storageAccount/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/Azure/storageAccount/outputs.tf -------------------------------------------------------------------------------- /Terraform/Azure/storageAccount/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/Azure/storageAccount/provider.tf -------------------------------------------------------------------------------- /Terraform/Azure/storageAccount/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/Azure/storageAccount/variables.tf -------------------------------------------------------------------------------- /Terraform/GCP/VM-agent/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/GCP/VM-agent/main.tf -------------------------------------------------------------------------------- /Terraform/GCP/VM-agent/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/GCP/VM-agent/provider.tf -------------------------------------------------------------------------------- /Terraform/GCP/VM-agent/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/GCP/VM-agent/variables.tf -------------------------------------------------------------------------------- /Terraform/GCP/simpleBucket/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/GCP/simpleBucket/main.tf -------------------------------------------------------------------------------- /Terraform/GCP/simpleBucket/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/GCP/simpleBucket/outputs.tf -------------------------------------------------------------------------------- /Terraform/GCP/simpleBucket/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/GCP/simpleBucket/provider.tf -------------------------------------------------------------------------------- /Terraform/GCP/simpleBucket/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/GCP/simpleBucket/variables.tf -------------------------------------------------------------------------------- /Terraform/GCP/simpleVM/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/GCP/simpleVM/main.tf -------------------------------------------------------------------------------- /Terraform/GCP/simpleVM/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/GCP/simpleVM/outputs.tf -------------------------------------------------------------------------------- /Terraform/GCP/simpleVM/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/GCP/simpleVM/provider.tf -------------------------------------------------------------------------------- /Terraform/GCP/simpleVM/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/GCP/simpleVM/variables.tf -------------------------------------------------------------------------------- /Terraform/GCP/simpleWebsite/files/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/GCP/simpleWebsite/files/index.html -------------------------------------------------------------------------------- /Terraform/GCP/simpleWebsite/files/morpheus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/GCP/simpleWebsite/files/morpheus.png -------------------------------------------------------------------------------- /Terraform/GCP/simpleWebsite/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/GCP/simpleWebsite/main.tf -------------------------------------------------------------------------------- /Terraform/GCP/simpleWebsite/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/GCP/simpleWebsite/outputs.tf -------------------------------------------------------------------------------- /Terraform/GCP/simpleWebsite/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/GCP/simpleWebsite/provider.tf -------------------------------------------------------------------------------- /Terraform/GCP/simpleWebsite/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/GCP/simpleWebsite/variables.tf -------------------------------------------------------------------------------- /Terraform/NutanixPrism/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/NutanixPrism/main.tf -------------------------------------------------------------------------------- /Terraform/NutanixPrism/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/NutanixPrism/provider.tf -------------------------------------------------------------------------------- /Terraform/NutanixPrism/unattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/NutanixPrism/unattend.xml -------------------------------------------------------------------------------- /Terraform/NutanixPrism/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/NutanixPrism/variables.tf -------------------------------------------------------------------------------- /Terraform/OCI/simpleBucket/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/OCI/simpleBucket/main.tf -------------------------------------------------------------------------------- /Terraform/OCI/simpleBucket/outputs.tf: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Terraform/OCI/simpleBucket/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/OCI/simpleBucket/provider.tf -------------------------------------------------------------------------------- /Terraform/OCI/simpleBucket/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/OCI/simpleBucket/variables.tf -------------------------------------------------------------------------------- /Terraform/VMware/createFolder/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/VMware/createFolder/main.tf -------------------------------------------------------------------------------- /Terraform/VMware/createFolder/outputs.tf: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Terraform/VMware/createFolder/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/VMware/createFolder/provider.tf -------------------------------------------------------------------------------- /Terraform/VMware/createFolder/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/VMware/createFolder/variables.tf -------------------------------------------------------------------------------- /Terraform/VMware/createFolderMulti/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/VMware/createFolderMulti/main.tf -------------------------------------------------------------------------------- /Terraform/VMware/createFolderMulti/outputs.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Terraform/VMware/createFolderMulti/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/VMware/createFolderMulti/provider.tf -------------------------------------------------------------------------------- /Terraform/VMware/createFolderMulti/variables.tf: -------------------------------------------------------------------------------- 1 | variable "folder_name" {} 2 | -------------------------------------------------------------------------------- /Terraform/modules/AWS/simpleS3/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/modules/AWS/simpleS3/main.tf -------------------------------------------------------------------------------- /Terraform/modules/AWS/simpleS3/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/modules/AWS/simpleS3/outputs.tf -------------------------------------------------------------------------------- /Terraform/modules/AWS/simpleS3/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/modules/AWS/simpleS3/provider.tf -------------------------------------------------------------------------------- /Terraform/modules/AWS/simpleS3/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/modules/AWS/simpleS3/variables.tf -------------------------------------------------------------------------------- /Terraform/modules/Azure/resourceGroup/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/modules/Azure/resourceGroup/main.tf -------------------------------------------------------------------------------- /Terraform/modules/Azure/resourceGroup/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/modules/Azure/resourceGroup/outputs.tf -------------------------------------------------------------------------------- /Terraform/modules/Azure/resourceGroup/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/modules/Azure/resourceGroup/provider.tf -------------------------------------------------------------------------------- /Terraform/modules/Azure/resourceGroup/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/modules/Azure/resourceGroup/variables.tf -------------------------------------------------------------------------------- /Terraform/modules/Azure/storageAccount/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/modules/Azure/storageAccount/main.tf -------------------------------------------------------------------------------- /Terraform/modules/Azure/storageAccount/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/modules/Azure/storageAccount/outputs.tf -------------------------------------------------------------------------------- /Terraform/modules/Azure/storageAccount/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/modules/Azure/storageAccount/provider.tf -------------------------------------------------------------------------------- /Terraform/modules/Azure/storageAccount/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/modules/Azure/storageAccount/variables.tf -------------------------------------------------------------------------------- /Terraform/modules/Azure/storageContainer/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/modules/Azure/storageContainer/main.tf -------------------------------------------------------------------------------- /Terraform/modules/Azure/storageContainer/outputs.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Terraform/modules/Azure/storageContainer/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/modules/Azure/storageContainer/provider.tf -------------------------------------------------------------------------------- /Terraform/modules/Azure/storageContainer/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/modules/Azure/storageContainer/variables.tf -------------------------------------------------------------------------------- /Terraform/modules/GCP/storageBucket/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/modules/GCP/storageBucket/main.tf -------------------------------------------------------------------------------- /Terraform/modules/GCP/storageBucket/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/modules/GCP/storageBucket/outputs.tf -------------------------------------------------------------------------------- /Terraform/modules/GCP/storageBucket/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/modules/GCP/storageBucket/provider.tf -------------------------------------------------------------------------------- /Terraform/modules/GCP/storageBucket/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/modules/GCP/storageBucket/variables.tf -------------------------------------------------------------------------------- /Terraform/modules/OCI/simpleBucket/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/modules/OCI/simpleBucket/main.tf -------------------------------------------------------------------------------- /Terraform/modules/OCI/simpleBucket/outputs.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Terraform/modules/OCI/simpleBucket/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/modules/OCI/simpleBucket/provider.tf -------------------------------------------------------------------------------- /Terraform/modules/OCI/simpleBucket/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/modules/OCI/simpleBucket/variables.tf -------------------------------------------------------------------------------- /Terraform/modules/VMware/createFolder/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/modules/VMware/createFolder/main.tf -------------------------------------------------------------------------------- /Terraform/modules/VMware/createFolder/outputs.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Terraform/modules/VMware/createFolder/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/Terraform/modules/VMware/createFolder/provider.tf -------------------------------------------------------------------------------- /Terraform/modules/VMware/createFolder/variables.tf: -------------------------------------------------------------------------------- 1 | variable "folder_name" {} 2 | -------------------------------------------------------------------------------- /src/common/images/AddAnsibleIntegration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/src/common/images/AddAnsibleIntegration.png -------------------------------------------------------------------------------- /src/common/images/AnsibleTask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/src/common/images/AnsibleTask.png -------------------------------------------------------------------------------- /src/common/images/Patching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/src/common/images/Patching.png -------------------------------------------------------------------------------- /src/common/images/Patching_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/src/common/images/Patching_new.png -------------------------------------------------------------------------------- /src/common/images/executionSchedule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/src/common/images/executionSchedule.png -------------------------------------------------------------------------------- /src/common/images/gitIntegration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/src/common/images/gitIntegration.png -------------------------------------------------------------------------------- /src/common/images/jobUpdateWorkflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/src/common/images/jobUpdateWorkflow.png -------------------------------------------------------------------------------- /src/common/images/pluginUpload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/src/common/images/pluginUpload.png -------------------------------------------------------------------------------- /src/common/images/pythonTask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/morpheus-automation-examples/HEAD/src/common/images/pythonTask.png --------------------------------------------------------------------------------