example ebs mapper

This commit is contained in:
2019-10-23 14:04:51 -04:00
parent 72536f7cc7
commit 01cad92cb6
2 changed files with 71 additions and 0 deletions

13
deploy/main.tf Normal file
View File

@@ -0,0 +1,13 @@
provider "aws" {
version = "~> 2.0"
region = "us-east-2"
}
module "servers" {
source = "../test"
num_instances = 2
enable_mysql = false
enable_mongo = true
#mongo_disk_size = [300,100,100]
}