Terraform(提供方AWS)-Auto Scaling组对启动模板更改无效

时间:2018-07-09 17:23:20

标签: terraform terraform-provider-aws

在使用启动模板时无法使启动模板与ASG一起使用,而是通过小技巧将其与启动配置一起使用,即通过在ASG资源中插入启动配置名称,但不适用于启动模板。
ASG使用最新版本来启动新实例,但是尽管启动模板发生了变化,但它并未将任何内容更改为预运行实例。

我知道这是预料之中的,但是我们是否有任何解决方法可以使启动模板与ASG一起使用,还是需要坚持启动配置本身?

TF代码段-

resource "aws_launch_template" "lc_ec2" {
  image_id = "${var.ami_id}"
  instance_type = "${var.app_instance_type}"
  key_name = "${var.orgname}_${var.environ}_kp"
  vpc_security_group_ids = ["${aws_security_group.sg_ec2.id}"]
  user_data = "${base64encode(var.userdata)}"
  block_device_mappings {
    device_name = "/dev/xvdv"
    ebs {
      volume_size = 15
    }
  }
  iam_instance_profile {
    name = "${var.orgname}_${var.environ}_profile"
  }
  lifecycle {
    create_before_destroy = true
  }

  tag_specifications {
    resource_type = "instance"
    tags = "${merge(map("Name", format("%s-%s-lc-ec2", var.orgname, var.environ)), var.tags)}"
    } 
  tag_specifications {
    resource_type = "volume"
   tags = "${merge(map("Name", format("%s-%s-lc-ec2-volume", var.orgname, var.environ)), var.tags)}"
    }
  tags = "${merge(map("Name", format("%s-%s-lc-ec2", var.orgname, var.environ)), var.tags)}"
}

resource "aws_autoscaling_group" "asg_ec2" {
    name = "${var.orgname}-${var.environ}-asg-ec2-${aws_launch_template.lc_ec2.name}"

    vpc_zone_identifier = ["${data.aws_subnet.private.*.id}"]
    min_size  = 1
    desired_capacity  = 1
    max_size  = 1
    target_group_arns = ["${aws_lb_target_group.alb_tg.arn}"]
    default_cooldown= 100
    health_check_grace_period = 100
    termination_policies = ["ClosestToNextInstanceHour", "NewestInstance"]
    health_check_type="ELB"
    launch_template = {
      id = "${aws_launch_template.lc_ec2.id}"
      version = "$$Latest"
   }  
      lifecycle {
    create_before_destroy = true
  }

  tags = [
    {
      key                 = "Name"
      value               = "${var.orgname}"
      propagate_at_launch = true
    },
    {
      key                 = "Environ"
      value               = "${var.environ}"
      propagate_at_launch = true
    }
  ]
}

1 个答案:

答案 0 :(得分:1)

有一个办法可以实现这一目标。

AWS CloudFormation支持自动缩放组的滚动更新。 由于Terraform支持cloudformation堆栈资源,因此您可以将ASG定义为具有更新策略的cloudformation堆栈。但是,CloudFormation不支持启动模板版本的$$ Latest标签,因此您必须参数化版本,并从在terraform配置文件中创建的启动模板资源的latest_version属性中获取输入值。