This commit is contained in:
Devin W. Leaman 2022-10-18 21:59:12 -05:00 committed by GitHub
commit 559f37c16c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 0 deletions

View file

@ -16,4 +16,5 @@ module "kasm" {
admin_password = "changeme"
allow_ssh_cidrs = ["0.0.0.0/0"]
ssh_key_fingerprints = []
vpc_uuid = ""
}

View file

@ -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

View file

@ -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"
}