Adding exchange module for AWS Terraform

This commit is contained in:
Chris Long
2021-05-14 20:13:57 -07:00
parent fe8fed0719
commit 274e622e28
17 changed files with 231 additions and 128 deletions

11
AWS/Terraform/exchange.tf Normal file
View File

@@ -0,0 +1,11 @@
## Remove the block comment to enable the creation of the Exchange server
module "exchange" {
source = "./modules/exchange"
region = var.region
subnet_id = aws_subnet.default.id
security_group_id = [aws_security_group.windows.id]
instance_name_prefix = var.instance_name_prefix
custom-tags = var.custom-tags
exchange_ami = var.exchange_ami
}