From a691d5407a1b910b74c809b0583cc25144e7706f Mon Sep 17 00:00:00 2001 From: Igor Kotov Date: Wed, 22 Jun 2022 21:59:01 +0300 Subject: [PATCH] variable "public_ip_enabled --- variables.tf | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/variables.tf b/variables.tf index ec9de80..99486cb 100644 --- a/variables.tf +++ b/variables.tf @@ -24,6 +24,12 @@ variable "bastion_enabled" { description = "Gives ability to enable or disable Bastion functionality" } +variable "public_ip_enabled" { + type = bool + default = false + description = "Enable Public IP for EC2 instance" +} + variable "ext_security_groups" { description = "External security groups to add to bastion host" type = list(any)