From f2fd10b996d3db9084fdd8f2ff25d191774a40ff Mon Sep 17 00:00:00 2001 From: exequielrafaela Date: Thu, 22 Oct 2020 11:33:17 -0300 Subject: [PATCH] BBL-192 | fixing variable name --- instances.tf | 2 +- variables.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/instances.tf b/instances.tf index 8131459..04b2864 100644 --- a/instances.tf +++ b/instances.tf @@ -19,7 +19,7 @@ data "aws_ami" "ubuntu_linux" { tags = merge( var.tags, { - ApprovedAMI = var.tagApprovedAMIvalue + ApprovedAMI = var.tag_approved_ami_value }, ) } diff --git a/variables.tf b/variables.tf index a17a0ae..f92dac4 100644 --- a/variables.tf +++ b/variables.tf @@ -96,7 +96,7 @@ variable "tags" { default = {} } -variable "tagApprovedAMIvalue" { +variable "tag_approved_ami_value" { type = string description = "Set the specific tag ApprovedAMI ('true' | 'false') that identifies aws-config compliant AMIs" default = "false"