FEATURES OPEN SOURCE ABOUT DOCS LOGIN REGISTER

aws_autoscaling_lifecycle_hook

Provides an AutoScaling Lifecycle Hook resource.

Example Usage

resource:
  aws_autoscaling_group:
    foobar:
      availability_zones:
        - us-west-2a
      name: terraform-test-foobar5
      health_check_type: EC2
      termination_policies:
        - OldestInstance
      tag:
        key: Foo
        value: foo-bar
        propagate_at_launch: true
  aws_autoscaling_lifecycle_hook:
    foobar:
      name: foobar
      autoscaling_group_name: '${aws_autoscaling_group.foobar.name}'
      default_result: CONTINUE
      heartbeat_timeout: 2000
      lifecycle_transition: 'autoscaling:EC2_INSTANCE_LAUNCHING'
      notification_metadata: "{\n  \"foo\": \"bar\"\n}"
      notification_target_arn: 'arn:aws:sqs:us-east-1:444455556666:queue1*'
      role_arn: 'arn:aws:iam::123456789012:role/S3Access'

Argument Reference

The following arguments are supported:


See the source of this document at Terraform.io