Skip to content

Commit

Permalink
Updated t instance type check to include t3a type (#146)
Browse files Browse the repository at this point in the history
  • Loading branch information
antonbabenko authored Mar 5, 2020
1 parent ecc3159 commit c22b976
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
locals {
is_t_instance_type = "${replace(var.instance_type, "/^t[23]{1}\\..*$/", "1") == "1" ? "1" : "0"}"
is_t_instance_type = "${replace(var.instance_type, "/^t(2|3|3a){1}\\..*$/", "1") == "1" ? "1" : "0"}"
}

######
Expand Down

0 comments on commit c22b976

Please sign in to comment.