Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

support list type variables evaluation #19

Merged
merged 1 commit into from
Dec 18, 2016
Merged

Conversation

wata727
Copy link
Member

@wata727 wata727 commented Dec 18, 2016

This PR made support list type variables evaluation. Previously, false negatives occurred in the following cases:

variable "security_groups" {
  type = "list"
  default = [
    "sg-12345678", # This security group does not found
    "sg-1234abcd",
  ]
}

resource "aws_instance" {
  vpc_security_group_ids = "${var.security_groups}"
}

@wata727 wata727 merged commit 14decde into master Dec 18, 2016
@wata727 wata727 deleted the support_list_type_variable branch December 18, 2016 09:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

1 participant