Skip to content

Commit

Permalink
BBL-192 | fixing variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
exequielrafaela committed Oct 22, 2020
1 parent 4555e0c commit f2fd10b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion instances.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ data "aws_ami" "ubuntu_linux" {
tags = merge(
var.tags,
{
ApprovedAMI = var.tagApprovedAMIvalue
ApprovedAMI = var.tag_approved_ami_value
},
)
}
Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit f2fd10b

Please sign in to comment.