mirror of
https://github.com/kasmtech/terraform.git
synced 2026-01-23 02:24:11 +00:00
Merge 015164244b into db4fea9fa1
This commit is contained in:
commit
559f37c16c
3 changed files with 6 additions and 0 deletions
|
|
@ -16,4 +16,5 @@ module "kasm" {
|
|||
admin_password = "changeme"
|
||||
allow_ssh_cidrs = ["0.0.0.0/0"]
|
||||
ssh_key_fingerprints = []
|
||||
vpc_uuid = ""
|
||||
}
|
||||
|
|
|
|||
|
|
@ -13,6 +13,7 @@ resource "digitalocean_droplet" "kasm-server" {
|
|||
image = "${var.digital_ocean_image}"
|
||||
region = "${var.digital_ocean_region}"
|
||||
size = "${var.digital_ocean_droplet_slug}"
|
||||
vpc_uuid = "${var.vpc_uuid}"
|
||||
private_networking = false
|
||||
backups = false
|
||||
ipv6 = false
|
||||
|
|
|
|||
|
|
@ -43,3 +43,7 @@ variable swap_size {
|
|||
description = "The amount of swap (in MB) to configure inside the compute instances"
|
||||
default = 2048
|
||||
}
|
||||
|
||||
variable vpc_uuid {
|
||||
description = "The UUID of the VPC to deploy the kasm server into"
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue