Skip to content

Commit

Permalink
update examples
Browse files Browse the repository at this point in the history
  • Loading branch information
oehrlis committed Feb 24, 2023
1 parent 190fd71 commit d98f53e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions examples/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ module "tvdlab-bastion" {
bastion_boot_volume_size = var.bastion_boot_volume_size
hosts_file = var.hosts_file
yum_upgrade = var.yum_upgrade
public_ssh_port = var.public_ssh_port
guacamole_enabled = var.guacamole_enabled
guacamole_connections = var.guacamole_connections
webhost_name = var.webhost_name
Expand Down
6 changes: 6 additions & 0 deletions examples/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,12 @@ variable "ssh_public_key_path" {
type = string
}

variable "public_ssh_port" {
description = "Public SSH access port configured in security list."
type = number
default = 22
}

variable "bastion_subnet" {
description = "List of subnets for the bastion hosts"
type = list(string)
Expand Down

0 comments on commit d98f53e

Please sign in to comment.