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
478 B
17 lines
478 B
module "do_module" {
|
|
source = "github.com/hap-wi/haproxy-wi-terraform-modules?ref=digitalocean"
|
|
|
|
region = var.region
|
|
size = var.size
|
|
private_networking = var.private_networking
|
|
floating_ip = var.floating_ip
|
|
ssh_key_name = var.ssh_key_name
|
|
name = var.name
|
|
os = var.os
|
|
ssh_ids = var.ssh_ids
|
|
firewall = var.firewall
|
|
backup = var.backup
|
|
monitoring = var.monitoring
|
|
token = var.token
|
|
}
|