├── .github └── FUNDING.yml ├── 2-Tier CAS Demo Application └── blueprint.yaml ├── 3 Tier Demo Application └── blueprint.yaml ├── Avi Load Balancer ├── 2-tier with avi constructs.yml └── README.md ├── Blueprint Expressions Sample └── blueprint.yaml ├── CAS Demo Application └── blueprint.yaml ├── Cloud Config └── blueprint.yaml ├── Cloud VM ├── README.md └── blueprint.yaml ├── Custom Username and Password └── blueprint.yaml ├── Docker Host Build - Ubuntu └── blueprint.yaml ├── Drupal.yaml ├── Gitlab-CE.yaml ├── Jenkins on Docker - Ubuntu └── blueprint.yaml ├── Jenkins.yaml ├── MEANstack.yaml ├── NSXT_4.yaml ├── Networking & Security ├── App with LB │ ├── README.md │ └── blueprint.yaml ├── Cloud VM with NSX SG │ ├── README.md │ └── blueprint.yaml ├── Cloud VM with internal IP │ ├── README.md │ └── blueprint.yaml ├── NSX Outbound Network │ ├── README.md │ └── blueprint.yaml ├── NSX Routed Network │ ├── README.md │ └── blueprint.yaml ├── On-Demand NSX Networks │ └── blueprint.yaml ├── vSphere VM with Multi-Net │ ├── README.md │ └── blueprint.yaml ├── vSphere VM with NSX LB (existing) v2 │ ├── README.md │ └── blueprint.yaml ├── vSphere VM with NSX LB (existing) │ ├── README.md │ └── blueprint.yaml └── vSphere VM with NSX LB (ondemand) │ ├── README.md │ └── blueprint.yaml ├── Nginx.yaml ├── Operating Systems - Multiple ├── CentOS - 2 VMs with Load Balancer.yaml ├── CentOS - Base.yaml ├── CentOS - CloudConfig.yaml ├── CentOS - NSX-T On-Demand Networking.yaml ├── CentOS - Security Tags.yaml ├── MultiMachine - NSX-T On-Demand Networking.yaml ├── Multiple CentOS VM and On-Demand Networking - ORG.yaml ├── Multiple CentOS VM and On-Demand Networking.yaml ├── Multiple Machine Blueprint.yaml ├── Windows 2016 - Additional Disk.yaml ├── Windows 2016 - Base.yaml └── Windows 2016 - NSX-T On-Demand Networking.yaml ├── Postgres Custom Database └── blueprint.yaml ├── RDS.yaml ├── README.md ├── RabbitMQ.yaml ├── RemoteAccess with SSH Key └── blueprint.yaml ├── RoR.yaml ├── Tomcat.yaml ├── VM with Outbound Netork.yml ├── VM with Saltstack.yaml ├── VM with multiply disks ├── README.md └── blueprint.yaml ├── ansible-control-machine ├── README.md └── blueprint.yaml ├── aws-autoscale ├── .gitkeep └── blueprint.yaml ├── aws-bitnami-artifactory └── blueprint.yaml ├── aws-bitnami-tomcat └── blueprint.yaml ├── aws-openfaas-node └── blueprint.yaml ├── aws-route53-create-a-record └── blueprint.yaml ├── aws-route53-create-alias-record └── blueprint.yaml ├── aws-s3-create-bucket-object-and-policy └── blueprint.yaml ├── aws-s3-create-policy └── blueprint.yaml ├── aws-ubuntu-docker-host └── blueprint.yaml ├── azure-create-resource-group └── blueprint.yaml ├── azure-create-storage-account └── blueprint.yaml ├── big-blueprint-bab └── blueprint.yaml ├── docker-host-cloudinit ├── README.md └── blueprint.yaml ├── docs ├── .nojekyll ├── README.md ├── _coverpage.md ├── _sidebar.md ├── example-template.md ├── index.html ├── index.md ├── list-of-templates.md ├── quick-start.md ├── tutorial1.md └── tutorial2.md ├── harbor-host ├── README.md └── blueprint.yaml ├── k8s-create-cluster ├── .gitkeep └── blueprint.yaml ├── k8s-create-from-yaml ├── blueprint.yaml └── k8s-create-from-yaml-custom-form.yml ├── k8s-create-namespace └── blueprint.yaml ├── k8s-create-supervisor-namespace └── blueprint.yaml ├── saltstack-add-grains └── blueprint.yaml ├── ssh-access-all-types ├── .gitkeep └── blueprint.yaml ├── tf-aws-ec2-create-security-group-and-attach-to-instance └── blueprint.yaml ├── tito-multi-tier-with-lb └── blueprint.yaml ├── vSphere Disk on Datastore ├── README.md └── blueprint.yaml ├── vSphere Template Builder └── blueprint.yaml ├── vSphere VM Custom Spec ├── README.md └── blueprint.yaml ├── vSphere VM from OVA ├── README.md └── blueprint.yaml ├── vSphere VM from Snapshot ├── README.md └── blueprint.yaml ├── vSphere VM in Folder ├── README.md └── blueprint.yaml ├── vSphere VM tagged ├── README.md └── blueprint.yaml ├── vSphere VM with Ansible Wrapper ├── README.md └── blueprint.yaml ├── vSphere VM with CPU&Mem ├── README.md └── blueprint.yaml ├── vSphere VM with Disk ├── README.md └── blueprint.yaml ├── vSphere VM with Flavor ├── README.md └── blueprint.yaml ├── vSphere VM with Multi-Net ├── README.md └── blueprint.yaml ├── vSphere VM with Net & Static IP ├── README.md └── blueprint.yaml ├── vSphere VM with Net ├── README.md └── blueprint.yaml ├── vSphere VM with Remote Access ├── README.md └── blueprint.yaml ├── vmw-veba ├── README.md └── blueprint.yaml └── volume-request-multiple-volumes ├── blueprint.yaml └── custom-form.yml /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /2-Tier CAS Demo Application/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/2-Tier CAS Demo Application/blueprint.yaml -------------------------------------------------------------------------------- /3 Tier Demo Application/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/3 Tier Demo Application/blueprint.yaml -------------------------------------------------------------------------------- /Avi Load Balancer/2-tier with avi constructs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/Avi Load Balancer/2-tier with avi constructs.yml -------------------------------------------------------------------------------- /Avi Load Balancer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/Avi Load Balancer/README.md -------------------------------------------------------------------------------- /Blueprint Expressions Sample/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/Blueprint Expressions Sample/blueprint.yaml -------------------------------------------------------------------------------- /CAS Demo Application/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/CAS Demo Application/blueprint.yaml -------------------------------------------------------------------------------- /Cloud Config/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/Cloud Config/blueprint.yaml -------------------------------------------------------------------------------- /Cloud VM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/Cloud VM/README.md -------------------------------------------------------------------------------- /Cloud VM/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/Cloud VM/blueprint.yaml -------------------------------------------------------------------------------- /Custom Username and Password/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/Custom Username and Password/blueprint.yaml -------------------------------------------------------------------------------- /Docker Host Build - Ubuntu/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/Docker Host Build - Ubuntu/blueprint.yaml -------------------------------------------------------------------------------- /Drupal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/Drupal.yaml -------------------------------------------------------------------------------- /Gitlab-CE.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/Gitlab-CE.yaml -------------------------------------------------------------------------------- /Jenkins on Docker - Ubuntu/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/Jenkins on Docker - Ubuntu/blueprint.yaml -------------------------------------------------------------------------------- /Jenkins.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/Jenkins.yaml -------------------------------------------------------------------------------- /MEANstack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/MEANstack.yaml -------------------------------------------------------------------------------- /NSXT_4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/NSXT_4.yaml -------------------------------------------------------------------------------- /Networking & Security/App with LB/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/Networking & Security/App with LB/README.md -------------------------------------------------------------------------------- /Networking & Security/App with LB/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/Networking & Security/App with LB/blueprint.yaml -------------------------------------------------------------------------------- /Networking & Security/Cloud VM with NSX SG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/Networking & Security/Cloud VM with NSX SG/README.md -------------------------------------------------------------------------------- /Networking & Security/Cloud VM with NSX SG/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/Networking & Security/Cloud VM with NSX SG/blueprint.yaml -------------------------------------------------------------------------------- /Networking & Security/Cloud VM with internal IP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/Networking & Security/Cloud VM with internal IP/README.md -------------------------------------------------------------------------------- /Networking & Security/Cloud VM with internal IP/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/Networking & Security/Cloud VM with internal IP/blueprint.yaml -------------------------------------------------------------------------------- /Networking & Security/NSX Outbound Network/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/Networking & Security/NSX Outbound Network/README.md -------------------------------------------------------------------------------- /Networking & Security/NSX Outbound Network/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/Networking & Security/NSX Outbound Network/blueprint.yaml -------------------------------------------------------------------------------- /Networking & Security/NSX Routed Network/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/Networking & Security/NSX Routed Network/README.md -------------------------------------------------------------------------------- /Networking & Security/NSX Routed Network/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/Networking & Security/NSX Routed Network/blueprint.yaml -------------------------------------------------------------------------------- /Networking & Security/On-Demand NSX Networks/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/Networking & Security/On-Demand NSX Networks/blueprint.yaml -------------------------------------------------------------------------------- /Networking & Security/vSphere VM with Multi-Net/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/Networking & Security/vSphere VM with Multi-Net/README.md -------------------------------------------------------------------------------- /Networking & Security/vSphere VM with Multi-Net/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/Networking & Security/vSphere VM with Multi-Net/blueprint.yaml -------------------------------------------------------------------------------- /Networking & Security/vSphere VM with NSX LB (existing) v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/Networking & Security/vSphere VM with NSX LB (existing) v2/README.md -------------------------------------------------------------------------------- /Networking & Security/vSphere VM with NSX LB (existing) v2/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/Networking & Security/vSphere VM with NSX LB (existing) v2/blueprint.yaml -------------------------------------------------------------------------------- /Networking & Security/vSphere VM with NSX LB (existing)/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/Networking & Security/vSphere VM with NSX LB (existing)/README.md -------------------------------------------------------------------------------- /Networking & Security/vSphere VM with NSX LB (existing)/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/Networking & Security/vSphere VM with NSX LB (existing)/blueprint.yaml -------------------------------------------------------------------------------- /Networking & Security/vSphere VM with NSX LB (ondemand)/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/Networking & Security/vSphere VM with NSX LB (ondemand)/README.md -------------------------------------------------------------------------------- /Networking & Security/vSphere VM with NSX LB (ondemand)/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/Networking & Security/vSphere VM with NSX LB (ondemand)/blueprint.yaml -------------------------------------------------------------------------------- /Nginx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/Nginx.yaml -------------------------------------------------------------------------------- /Operating Systems - Multiple/CentOS - 2 VMs with Load Balancer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/Operating Systems - Multiple/CentOS - 2 VMs with Load Balancer.yaml -------------------------------------------------------------------------------- /Operating Systems - Multiple/CentOS - Base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/Operating Systems - Multiple/CentOS - Base.yaml -------------------------------------------------------------------------------- /Operating Systems - Multiple/CentOS - CloudConfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/Operating Systems - Multiple/CentOS - CloudConfig.yaml -------------------------------------------------------------------------------- /Operating Systems - Multiple/CentOS - NSX-T On-Demand Networking.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/Operating Systems - Multiple/CentOS - NSX-T On-Demand Networking.yaml -------------------------------------------------------------------------------- /Operating Systems - Multiple/CentOS - Security Tags.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/Operating Systems - Multiple/CentOS - Security Tags.yaml -------------------------------------------------------------------------------- /Operating Systems - Multiple/MultiMachine - NSX-T On-Demand Networking.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/Operating Systems - Multiple/MultiMachine - NSX-T On-Demand Networking.yaml -------------------------------------------------------------------------------- /Operating Systems - Multiple/Multiple CentOS VM and On-Demand Networking - ORG.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/Operating Systems - Multiple/Multiple CentOS VM and On-Demand Networking - ORG.yaml -------------------------------------------------------------------------------- /Operating Systems - Multiple/Multiple CentOS VM and On-Demand Networking.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/Operating Systems - Multiple/Multiple CentOS VM and On-Demand Networking.yaml -------------------------------------------------------------------------------- /Operating Systems - Multiple/Multiple Machine Blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/Operating Systems - Multiple/Multiple Machine Blueprint.yaml -------------------------------------------------------------------------------- /Operating Systems - Multiple/Windows 2016 - Additional Disk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/Operating Systems - Multiple/Windows 2016 - Additional Disk.yaml -------------------------------------------------------------------------------- /Operating Systems - Multiple/Windows 2016 - Base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/Operating Systems - Multiple/Windows 2016 - Base.yaml -------------------------------------------------------------------------------- /Operating Systems - Multiple/Windows 2016 - NSX-T On-Demand Networking.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/Operating Systems - Multiple/Windows 2016 - NSX-T On-Demand Networking.yaml -------------------------------------------------------------------------------- /Postgres Custom Database/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/Postgres Custom Database/blueprint.yaml -------------------------------------------------------------------------------- /RDS.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/RDS.yaml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/README.md -------------------------------------------------------------------------------- /RabbitMQ.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/RabbitMQ.yaml -------------------------------------------------------------------------------- /RemoteAccess with SSH Key/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/RemoteAccess with SSH Key/blueprint.yaml -------------------------------------------------------------------------------- /RoR.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/RoR.yaml -------------------------------------------------------------------------------- /Tomcat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/Tomcat.yaml -------------------------------------------------------------------------------- /VM with Outbound Netork.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/VM with Outbound Netork.yml -------------------------------------------------------------------------------- /VM with Saltstack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/VM with Saltstack.yaml -------------------------------------------------------------------------------- /VM with multiply disks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/VM with multiply disks/README.md -------------------------------------------------------------------------------- /VM with multiply disks/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/VM with multiply disks/blueprint.yaml -------------------------------------------------------------------------------- /ansible-control-machine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/ansible-control-machine/README.md -------------------------------------------------------------------------------- /ansible-control-machine/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/ansible-control-machine/blueprint.yaml -------------------------------------------------------------------------------- /aws-autoscale/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aws-autoscale/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/aws-autoscale/blueprint.yaml -------------------------------------------------------------------------------- /aws-bitnami-artifactory/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/aws-bitnami-artifactory/blueprint.yaml -------------------------------------------------------------------------------- /aws-bitnami-tomcat/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/aws-bitnami-tomcat/blueprint.yaml -------------------------------------------------------------------------------- /aws-openfaas-node/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/aws-openfaas-node/blueprint.yaml -------------------------------------------------------------------------------- /aws-route53-create-a-record/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/aws-route53-create-a-record/blueprint.yaml -------------------------------------------------------------------------------- /aws-route53-create-alias-record/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/aws-route53-create-alias-record/blueprint.yaml -------------------------------------------------------------------------------- /aws-s3-create-bucket-object-and-policy/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/aws-s3-create-bucket-object-and-policy/blueprint.yaml -------------------------------------------------------------------------------- /aws-s3-create-policy/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/aws-s3-create-policy/blueprint.yaml -------------------------------------------------------------------------------- /aws-ubuntu-docker-host/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/aws-ubuntu-docker-host/blueprint.yaml -------------------------------------------------------------------------------- /azure-create-resource-group/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/azure-create-resource-group/blueprint.yaml -------------------------------------------------------------------------------- /azure-create-storage-account/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/azure-create-storage-account/blueprint.yaml -------------------------------------------------------------------------------- /big-blueprint-bab/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/big-blueprint-bab/blueprint.yaml -------------------------------------------------------------------------------- /docker-host-cloudinit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/docker-host-cloudinit/README.md -------------------------------------------------------------------------------- /docker-host-cloudinit/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/docker-host-cloudinit/blueprint.yaml -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- 1 | # Headline 2 | 3 | > An awesome project. 4 | -------------------------------------------------------------------------------- /docs/_coverpage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/docs/_coverpage.md -------------------------------------------------------------------------------- /docs/_sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/docs/_sidebar.md -------------------------------------------------------------------------------- /docs/example-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/docs/example-template.md -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/list-of-templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/docs/list-of-templates.md -------------------------------------------------------------------------------- /docs/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/docs/quick-start.md -------------------------------------------------------------------------------- /docs/tutorial1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/docs/tutorial1.md -------------------------------------------------------------------------------- /docs/tutorial2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/docs/tutorial2.md -------------------------------------------------------------------------------- /harbor-host/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/harbor-host/README.md -------------------------------------------------------------------------------- /harbor-host/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/harbor-host/blueprint.yaml -------------------------------------------------------------------------------- /k8s-create-cluster/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /k8s-create-cluster/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/k8s-create-cluster/blueprint.yaml -------------------------------------------------------------------------------- /k8s-create-from-yaml/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/k8s-create-from-yaml/blueprint.yaml -------------------------------------------------------------------------------- /k8s-create-from-yaml/k8s-create-from-yaml-custom-form.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/k8s-create-from-yaml/k8s-create-from-yaml-custom-form.yml -------------------------------------------------------------------------------- /k8s-create-namespace/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/k8s-create-namespace/blueprint.yaml -------------------------------------------------------------------------------- /k8s-create-supervisor-namespace/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/k8s-create-supervisor-namespace/blueprint.yaml -------------------------------------------------------------------------------- /saltstack-add-grains/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/saltstack-add-grains/blueprint.yaml -------------------------------------------------------------------------------- /ssh-access-all-types/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ssh-access-all-types/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/ssh-access-all-types/blueprint.yaml -------------------------------------------------------------------------------- /tf-aws-ec2-create-security-group-and-attach-to-instance/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/tf-aws-ec2-create-security-group-and-attach-to-instance/blueprint.yaml -------------------------------------------------------------------------------- /tito-multi-tier-with-lb/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/tito-multi-tier-with-lb/blueprint.yaml -------------------------------------------------------------------------------- /vSphere Disk on Datastore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/vSphere Disk on Datastore/README.md -------------------------------------------------------------------------------- /vSphere Disk on Datastore/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/vSphere Disk on Datastore/blueprint.yaml -------------------------------------------------------------------------------- /vSphere Template Builder/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/vSphere Template Builder/blueprint.yaml -------------------------------------------------------------------------------- /vSphere VM Custom Spec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/vSphere VM Custom Spec/README.md -------------------------------------------------------------------------------- /vSphere VM Custom Spec/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/vSphere VM Custom Spec/blueprint.yaml -------------------------------------------------------------------------------- /vSphere VM from OVA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/vSphere VM from OVA/README.md -------------------------------------------------------------------------------- /vSphere VM from OVA/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/vSphere VM from OVA/blueprint.yaml -------------------------------------------------------------------------------- /vSphere VM from Snapshot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/vSphere VM from Snapshot/README.md -------------------------------------------------------------------------------- /vSphere VM from Snapshot/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/vSphere VM from Snapshot/blueprint.yaml -------------------------------------------------------------------------------- /vSphere VM in Folder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/vSphere VM in Folder/README.md -------------------------------------------------------------------------------- /vSphere VM in Folder/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/vSphere VM in Folder/blueprint.yaml -------------------------------------------------------------------------------- /vSphere VM tagged/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/vSphere VM tagged/README.md -------------------------------------------------------------------------------- /vSphere VM tagged/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/vSphere VM tagged/blueprint.yaml -------------------------------------------------------------------------------- /vSphere VM with Ansible Wrapper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/vSphere VM with Ansible Wrapper/README.md -------------------------------------------------------------------------------- /vSphere VM with Ansible Wrapper/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/vSphere VM with Ansible Wrapper/blueprint.yaml -------------------------------------------------------------------------------- /vSphere VM with CPU&Mem/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/vSphere VM with CPU&Mem/README.md -------------------------------------------------------------------------------- /vSphere VM with CPU&Mem/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/vSphere VM with CPU&Mem/blueprint.yaml -------------------------------------------------------------------------------- /vSphere VM with Disk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/vSphere VM with Disk/README.md -------------------------------------------------------------------------------- /vSphere VM with Disk/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/vSphere VM with Disk/blueprint.yaml -------------------------------------------------------------------------------- /vSphere VM with Flavor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/vSphere VM with Flavor/README.md -------------------------------------------------------------------------------- /vSphere VM with Flavor/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/vSphere VM with Flavor/blueprint.yaml -------------------------------------------------------------------------------- /vSphere VM with Multi-Net/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/vSphere VM with Multi-Net/README.md -------------------------------------------------------------------------------- /vSphere VM with Multi-Net/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/vSphere VM with Multi-Net/blueprint.yaml -------------------------------------------------------------------------------- /vSphere VM with Net & Static IP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/vSphere VM with Net & Static IP/README.md -------------------------------------------------------------------------------- /vSphere VM with Net & Static IP/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/vSphere VM with Net & Static IP/blueprint.yaml -------------------------------------------------------------------------------- /vSphere VM with Net/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/vSphere VM with Net/README.md -------------------------------------------------------------------------------- /vSphere VM with Net/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/vSphere VM with Net/blueprint.yaml -------------------------------------------------------------------------------- /vSphere VM with Remote Access/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/vSphere VM with Remote Access/README.md -------------------------------------------------------------------------------- /vSphere VM with Remote Access/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/vSphere VM with Remote Access/blueprint.yaml -------------------------------------------------------------------------------- /vmw-veba/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/vmw-veba/README.md -------------------------------------------------------------------------------- /vmw-veba/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/vmw-veba/blueprint.yaml -------------------------------------------------------------------------------- /volume-request-multiple-volumes/blueprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/volume-request-multiple-volumes/blueprint.yaml -------------------------------------------------------------------------------- /volume-request-multiple-volumes/custom-form.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imtrinity94/Aria_Automation_Templates/HEAD/volume-request-multiple-volumes/custom-form.yml --------------------------------------------------------------------------------