Skip to content

Instantly share code, notes, and snippets.

@calvin-puram
Created August 17, 2022 06:59
Show Gist options
  • Save calvin-puram/06217238f6a4996eebffc241f8421e10 to your computer and use it in GitHub Desktop.
Save calvin-puram/06217238f6a4996eebffc241f8421e10 to your computer and use it in GitHub Desktop.
...
resource "aws_eip" "node-eip" {
count = "${var.nodes_count}"
tags = {
Name = "node_${count.index}"
Environment = "dev"
}
}
resource "aws_eip" "monitoring-eip" {
tags = {
Name = "monitoring"
Environment = "dev"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment