Skip to content

Commit

Permalink
Update release tag in ec2 resource (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
niyatir2608 authored Jan 11, 2024
1 parent b40fc61 commit df0f2db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nat-instance.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ data "aws_ami" "amazon_linux_nat_instance" {

module "ec2_nat_instance" {
count = var.nat_type == "instance" ? 1 : 0
source = "git::https://github.com/TechHoldingLLC/terraform-aws-ec2.git?ref=v1.0.0"
source = "git::https://github.com/TechHoldingLLC/terraform-aws-ec2.git?ref=v1.0.1"
name = "${var.name}-nat-instance"
ami_id = var.nat_instance_ami_id == "" ? data.aws_ami.amazon_linux_nat_instance.id : var.nat_instance_ami_id
instance_type = var.nat_instance_type
Expand Down

0 comments on commit df0f2db

Please sign in to comment.