From 6844a1d9b2c057c77f7ca33e7c9566682ae8f3ef Mon Sep 17 00:00:00 2001 From: AdamCavaliere Date: Fri, 12 Oct 2018 16:16:42 -0500 Subject: [PATCH] Update README.md --- README.md | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 04828fd..3d1f8a5 100644 --- a/README.md +++ b/README.md @@ -1 +1,26 @@ -# terraform-vsphere-appx +# vSphere AppX Module + +This is an example module to demonstrate how you could use modules to provision VMs for applications. + +## Example + +``` + +module "appx" { + source = "ptfe.this-demo.rocks/SE_Org/appx/vsphere" + version = "1.1" + + vm_name = "applicationx" + cpu_count = "2" + memory = "1024" + tag_name = "Staging" + disk_size = "35" + vm_count = "2" + +} + +``` + +Required variables are: + * *vm_name* + * *vm_count*