mirror of https://github.com/Aidaho12/haproxy-wi
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
487 B
17 lines
487 B
module "aws_module" {
|
|
source = "github.com/Aidaho12/haproxy-wi-terraform-modules?ref=aws"
|
|
|
|
region = var.region
|
|
instance_type = var.instance_type
|
|
public_ip = var.public_ip
|
|
floating_ip = var.floating_ip
|
|
volume_size = var.volume_size
|
|
delete_on_termination = var.delete_on_termination
|
|
name = var.name
|
|
os = var.os
|
|
ssh_key_name = var.ssh_key_name
|
|
firewall = var.firewall
|
|
AWS_ACCESS_KEY = var.AWS_ACCESS_KEY
|
|
AWS_SECRET_KEY = var.AWS_SECRET_KEY
|
|
}
|