Skip to content

Instantly share code, notes, and snippets.

@KyMidd
Created September 16, 2019 03:38
Show Gist options
  • Select an option

  • Save KyMidd/f171f8234343eea0a2755dfaf26f751d to your computer and use it in GitHub Desktop.

Select an option

Save KyMidd/f171f8234343eea0a2755dfaf26f751d to your computer and use it in GitHub Desktop.
resource "aws_route_table_association" "subnet_route_table_association" {
count = length(var.subnet_addresses)
subnet_id = aws_subnet.subnet[count.index].id
route_table_id = element(var.route_table_id, count.index)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment