# AMIs
variable "ami" {
    type = "string"
    default = "ami-0145e9c39d8dee107" # UserSimulatorLoadTest2Feb2023
}

# Instance types
variable "instance_type" {
    type = "string"
    default = "t2.micro"
}

# Key names - private key file deployed to the server.
variable "key_name" {
    type = "string"
    default = "UserSimulatorLoadTest"
}

# Instance counts
variable "server_count" {
    type = "string"
    default = "1"
}

module "Windows" {
    source = "./Windows"
    server_count = "${var.server_count}"
    ami = "${var.ami}"
    key_name = "${var.key_name}"
    instance_type = "${var.instance_type}"
}
