feat: better support of test_cluster variable

This commit is contained in:
Pierre Mavro
2020-11-14 01:14:55 +01:00
committed by Pierre Mavro
parent 5e83eb794e
commit ec51ca2a09
2 changed files with 12 additions and 7 deletions

View File

@@ -25,7 +25,7 @@ variable "vpc_cidr_block" {
variable "test_cluster" {
description = "Is this a test cluster?"
default = "{% if test_cluster %}true{% else %}false{% endif %}"
default = "{{ test_cluster }}"
type = string
}