Created
April 13, 2016 19:03
-
-
Save vjanelle/a399044a1d853b581a70761e42c71821 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
resource "null_resource" "subnets" { | |
triggers { | |
subnets = "${var.private_subnets.us-west-2a},${var.private_subnets.us-west-2b},${var.private_subnets.us-west-2c}" | |
} | |
} | |
resource "aws_elasticache_subnet_group" "elasticache" { | |
name = "${var.name}-${var.envtag}" | |
description = "${var.name} subnet group for ${var.envtag}" | |
subnet_ids = [ "${compact("${split(",","${null_resource.subnets.triggers.subnets}")}")}" ] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment