Skip to content

Commit

Permalink
Merge pull request #26 from binbashar/feature/BBL-192-var-name-fix
Browse files Browse the repository at this point in the history
BBL-192 | fixing variable name
  • Loading branch information
exequielrafaela authored Oct 22, 2020
2 parents 0924c5a + f2fd10b commit 425af9a
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 425af9a

Please sign in to comment.