Skip to content

Commit

Permalink
Merge pull request #11 from FitnessKeeper/casper-upgrade-12
Browse files Browse the repository at this point in the history
added support for allowed_ipv6_cidr
  • Loading branch information
Falpangaea authored Feb 6, 2020
2 parents a32b480 + e515eeb commit 4cd2470
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ module "bastion" {
keys_update_frequency = var.keys_update_frequency
eip = var.enable_eip ? aws_eip.bastion.public_ip : "" # We *must* create an EIP resource for this conditional to work, even if enable_eip is set to false
additional_user_data_script = "${data.template_file.bastion_user_data.rendered}${var.additional_user_data_script}"
allowed_ipv6_cidr = var.allowed_ipv6_cidr
allowed_cidr = var.allowed_cidr
allowed_security_groups = var.allowed_security_groups
}
3 changes: 3 additions & 0 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -66,3 +66,6 @@ variable "subnet_ids" {
variable "vpc_id" {
}

variable "allowed_ipv6_cidr" {
default = "::/0"
}

0 comments on commit 4cd2470

Please sign in to comment.